From 32cb55c42474cce84931bf4f46e813a370bc140c Mon Sep 17 00:00:00 2001 From: Shruti Agarwal <46203852+agshruti12@users.noreply.github.com> Date: Mon, 2 Dec 2024 12:29:56 -0500 Subject: [PATCH] Shruti/time diff tests (#328) * time diff tests * time diff tests addition + bug fixes * fixing time_pairs numeric tests * clean up testing file * change the unit parameter to a featurebuilder default parameter, since it doens't need to be a column if we're only looking at the first entry in the series * remove extra raises in test feature metrics * update docs and restore unit test files * add missing tests lost due to merge conflict * update testing suite to account for NAs * resolve merge conflicts and clean up test file * add new helper files --------- Co-authored-by: Xinlan Emily Hu Co-authored-by: Xinlan Emily Hu --- docs/build/doctrees/environment.pickle | Bin 324236 -> 325656 bytes docs/build/doctrees/examples.doctree | Bin 137166 -> 138057 bytes docs/build/doctrees/feature_builder.doctree | Bin 90730 -> 92913 bytes .../features/temporal_features.doctree | Bin 20189 -> 22179 bytes docs/build/doctrees/index.doctree | Bin 29743 -> 29743 bytes .../calculate_chat_level_features.doctree | Bin 87407 -> 80462 bytes .../doctrees/utils/check_embeddings.doctree | Bin 44856 -> 49397 bytes docs/build/html/_sources/examples.rst.txt | 6 +- docs/build/html/_sources/index.rst.txt | 4 +- docs/build/html/examples.html | 22 +- docs/build/html/feature_builder.html | 19 +- docs/build/html/features/basic_features.html | 6 +- docs/build/html/features/burstiness.html | 6 +- docs/build/html/features/certainty.html | 6 +- .../html/features/discursive_diversity.html | 6 +- docs/build/html/features/fflow.html | 6 +- .../html/features/get_all_DD_features.html | 6 +- .../build/html/features/get_user_network.html | 6 +- docs/build/html/features/hedge.html | 6 +- docs/build/html/features/index.html | 10 +- .../html/features/info_exchange_zscore.html | 6 +- .../html/features/information_diversity.html | 6 +- .../html/features/lexical_features_v2.html | 6 +- .../named_entity_recognition_features.html | 6 +- .../html/features/other_lexical_features.html | 6 +- .../html/features/politeness_features.html | 6 +- docs/build/html/features/politeness_v2.html | 6 +- .../html/features/politeness_v2_helper.html | 6 +- docs/build/html/features/question_num.html | 6 +- docs/build/html/features/readability.html | 6 +- docs/build/html/features/reddit_tags.html | 6 +- .../html/features/temporal_features.html | 12 +- .../features/textblob_sentiment_analysis.html | 6 +- .../html/features/turn_taking_features.html | 6 +- docs/build/html/features/variance_in_DD.html | 6 +- .../within_person_discursive_range.html | 6 +- docs/build/html/features/word_mimicry.html | 6 +- .../html/features_conceptual/TEMPLATE.html | 6 +- .../content_word_accommodation.html | 6 +- .../function_word_accommodation.html | 6 +- .../build/html/features_conceptual/index.html | 6 +- .../features_conceptual/mimicry_bert.html | 6 +- .../features_conceptual/moving_mimicry.html | 6 +- .../named_entity_recognition.html | 6 +- .../features_conceptual/positivity_bert.html | 6 +- .../turn_taking_index.html | 6 +- .../html/features_conceptual/word_ttr.html | 6 +- docs/build/html/genindex.html | 20 +- docs/build/html/index.html | 22 +- docs/build/html/intro.html | 12 +- docs/build/html/objects.inv | Bin 4365 -> 4396 bytes docs/build/html/py-modindex.html | 6 +- docs/build/html/search.html | 6 +- docs/build/html/searchindex.js | 2 +- docs/build/html/utils/assign_chunk_nums.html | 6 +- .../utils/calculate_chat_level_features.html | 8 +- ...calculate_conversation_level_features.html | 6 +- .../utils/calculate_user_level_features.html | 6 +- docs/build/html/utils/check_embeddings.html | 23 +- docs/build/html/utils/gini_coefficient.html | 6 +- docs/build/html/utils/index.html | 10 +- docs/build/html/utils/preload_word_lists.html | 6 +- docs/build/html/utils/preprocess.html | 6 +- docs/build/html/utils/summarize_features.html | 6 +- .../utils/zscore_chats_and_conversation.html | 6 +- docs/source/basics.rst | 51 +- docs/source/examples.rst | 6 +- docs/source/index.rst | 4 +- src/team_comm_tools/feature_builder.py | 8 +- .../features/temporal_features.py | 51 +- .../utils/calculate_chat_level_features.py | 8 +- tests/data/cleaned_data/test_chat_level.csv | 1526 ++++----- tests/data/cleaned_data/test_conv_level.csv | 60 +- .../cleaned_data/test_time_pairs_datetime.csv | 10 + .../cleaned_data/test_time_pairs_numeric.csv | 10 + .../test_time_pairs_numeric_unit.csv | 10 + .../cleaned_data/test_timediff_datetime.csv | 12 + .../cleaned_data/test_timediff_numeric.csv | 10 + .../test_timediff_numeric_unit.csv | 10 + .../generate_liwc_tests.ipynb | 191 +- ...r.ipynb => helper_positivity_zscore.ipynb} | 0 tests/ipython_notebooks/helper_ts.ipynb | 2950 +++++++++++++++++ tests/run_tests.py | 199 +- tests/test_feature_metrics.py | 83 +- 84 files changed, 4507 insertions(+), 1126 deletions(-) create mode 100644 tests/data/cleaned_data/test_time_pairs_datetime.csv create mode 100644 tests/data/cleaned_data/test_time_pairs_numeric.csv create mode 100644 tests/data/cleaned_data/test_time_pairs_numeric_unit.csv create mode 100644 tests/data/cleaned_data/test_timediff_datetime.csv create mode 100644 tests/data/cleaned_data/test_timediff_numeric.csv create mode 100644 tests/data/cleaned_data/test_timediff_numeric_unit.csv rename tests/ipython_notebooks/{helper.ipynb => helper_positivity_zscore.ipynb} (100%) create mode 100644 tests/ipython_notebooks/helper_ts.ipynb diff --git a/docs/build/doctrees/environment.pickle b/docs/build/doctrees/environment.pickle index 529ce2906c4b4a79517c5c8eff1854e8d8ed58c1..4bbbf27c6a9e7b6d5c19388fd6fa24d79bc81e4a 100644 GIT binary patch delta 28059 zcmajId3;XC_W- zTB?esJW3bce5;G4o3=`$rFNow)$*Qm=002B_x=3-xpTHTXXebA^_hF0s>^{-*9Wqt z4L3G8z>?dE{2N*`wW>2;->b7yBZf6qTJnV*gZa&FjXZ0rLg$vxm{pb_c09$JiVb75 za30(~REg&Y5}JzJ*=o2*o1g~s+X;>MCrMs>LysW7H{M$@^L2C0JU%Iu-%0QV>_9>k ze=X62uTO|lLU>-c5T2A6!Yeuj@kdE*ly1Ne;){E?1oPF+lwdw0A&!5Q6eOCARfE;4 zR%ndx>Ej5! zAb@E}Fe4!xsvByejKLa@>)c%VgJ*Oe5b;O_W`N;5qY-2_PmS;G+}fia1)B5O!@_z} z?iQ%cnSnebGc zVJmMcbR((Y`&p45gop77-C8Pld1beb9zn=!#-E!S>`AH?>>UQ(&9kvI zc@xXm5u+G;W|&cs>nfkry_516&+X9+LLe9-qDjwY{D|e+r`>$V*01q!T)yW>l z_Ut|ypVT8>ZKLsZJ6NTrGKvrvWVA>tezJEnk&>Pp| z)DKZS!-(RaRqmS{r~an$F_0=Jv`E?RCM1W6r8i(GcqiGzqb1=mc!V^k zw)REb*JXT=j)KmZY>vEwRcQL3(XdQP{G;-el$IWi$t;Y-F*2@h@%1U;mDpSL1bo~F z6?!5<*iH2$d|?07JK_U7rrrr3!T9Kmk3TR+7lbr?bj1huQN0^Np7`jF5A2qD4}`Eo z>OJv+9Z>J3Rl-w6us1#$;G+*dBJq)o5A1z<3O*PtP&xQbcE zBJ?Lh;}F8Gq~{>i9v|cJaT{q95W;SwPekY;Lb(Vv$HydmV9(Jf>_?U)|w)mKik5GKfz=tXU!f)DHt`W$>q+3m^BLfM;Xt$cWx0^v2Mz__}AxB~u;a1b6 zMH0g(x0?Kak{Cw1)ihGmDIZ3=)pRCWVi@sOlSe;^wZK-kns!Z;D2Be(^!vbBlo6xf zYFaQ_V%P($rgOy-!(L!D9WR?&5%ipM2}-NkB(d`V*1V?gI6 ziD9p?nl#fw(tCnyOY&a zo$xp*#V%zv?dvHq>{eFOynzzKu4Ofq&z2Z=FRSU5r4sW2tkP<_&n1f8%xd~~yTq`o zSxv)tOANaknAk5d>~he)Mp*3Od{c2BD**CH|O zqTs`g62oo^LAq69*j25j%1gT?iv87U@;N9m?6X!=?Yk1gerq+w|4(Arcde$4Cnbjc z*J|2ZCo$~9(0{HQ29`<>wsmFU82*Z94?R!CD*!QibTh}Cp{oiWZV&Wu;V*p6zNessUt10o#0Eylr z=AN^N@oj?#d1BXJR})*+f$vCf!Tr*GR9J6Drzi7Sa~tu(^sCAvJ}lz}-XXUUA2c?G z*G+21Q^qgk+lwRks)+;npHpM_`NBY0&Fn}w^C3gM_|74{v}(N`a_!*Hj*s}Sq`_~& zGlr$9%{0DtSQl7nrj3Q=(6BI1?Cn^ZUZk!=aTuR6B8^uM59d=yrEM7L$MZ)_xlydsvFGnays(LY0Y@&QOne- zfu!AUN-HSnWgeB@N3H5jq-}*^-qkdrVy?0LZs9NjDz%}hbMH8_< zNHOuHV?9hb0%5u5WcTF@io*E{@T#?I6OWRGHP!kx-eO#t2?rt+Q3~7eqj^nOHO$?7 za(W8X8pk1I)#vu*^QQ#xu7&-eVqxUex|}drH_Nu@p#(`9v|-qUK?>|&7^%25C0E8LEB2-f zcW;_|qoOGG3}5n&g@a&QjZykwTo8Y82u4V#OWfYfPv`IC$26oJ5>J^_!8hi0=B=mZ z^6Zhxye6*=&m8AN1&Zd^^IAXybij_%n?IM{Nv)FAdQcJq;V^-`P?v*V=nD}#P8noW z!%Muih=udz6Eo}`2g=+Vf-;e-04@XH=E`60uju_Tmt+IR9Q+S`ynl`3r!%+u=Y4WUo{MK+2 zpHSXZt(pz}Cyfs*jpx`nmr7@mPs&S6pcE~{svDYLlX%LFqZH;IR@RblDGyez@D6ih zp|yh{cyL_8;EAIM2%qbxHin(;+!UUh-iVja{YF(ZK4jj|sK`;%3!?kd*+g{gz=HDV zk>z=%eb8E#+zG=Q$^odv6@xDt^`M%X=zH`Y! z{+QJ);?k5jUR0UN`#fV7YX>WB`8_~JKWpX_mrmiC8_nYHEC@TFWvP7S8Z)1>ET4a~ z$t-TJf^BHQzQAjCsTRk0<(B4Ty4q!1*CDcnde$^`0L=xbCwyL zSA%EzfaFSRDnIn3nP0VzuW(n|Fx++d%2nKT04P%1n!I82@?I*rShMIS@hfw$1a}%vU9VUCsa@6 zt5=xC(&K78zf_&dhi{4zd(S`-_4TRTcO_J8eI93P!IxLmXg+5HH0MIIn0Z%C;te_Y zakiWas3iM1P3`C(|3 znvNjhw+Vu5m6?}qn!=YaG4p>m&Elz#oB5L>ho5~mMnq53+VHriQ~Ak_W?udDTt2GG zEGnMY`tX9yseC{U5*zccHqYQ8^UZwnGle`JTIL$01EF~3m$VRW*^f|U{^c~Dk0GCJv*K6Twvxax2}@=)|CvF__S}`h7eBY`W}RE6|Wygi1w%-A%v@U z{R@O>kNP7*xN6sLB1C)Ce-NTQsz*bBXpb6*5H8a7XoPTquE#aReJjq_dQT+M9(5o> zIO*!65TZS59zwK7EkcO)sE;E=d(uW(JK+8J!%y~v`5{H5baT4LI@YidM!eAgAlHR^>7pJTWOCPi$vO^c0q{tsC^NlJ?b!oaLubv zKuGRU5yG{uJ`W*W=ju-&M0?a~glLbt6(L;P>aQS#>ssB05bawlKSYrBt!EITed`5; za2>1PKnQ0O{cnV5-`cPdK(ucSK#2COQ3%n#wF5%5Z|#8)E>-mb0L`sp<;8GNT~QOO zE2wZe#AuZ_Z@8oO|C}s7*fDz312v|$_w#WI0RFX$URW#v)6V%4SohL!3Dmz_DuJ@y z4;9hpj9LtH%v5pmE7e~di&p|`r@tDZAR53M?To2CvbUeaYJKuBTO854~S>o1@c5e^;X@P=hfT$=}yv430 z79@rzF>fAt)4w+G(jm#LJ$Lz*A(kNwvD$lA7Ac}8j1|KIAew8}2a2WPET*>TdZ~ht zf9>5Hw+*QN*1?AS-+zl?iO`NG|2~L+c0Z=}mEVgL0Q^Pd8l|yl_Z(|hoB8J%BGp0- zRpixX+}p2+x#P7GSXJbSV^cIEO6u>=R}c*l!@h(9jp@olYPUQbq?k6U4U`6OzI=C( z5-*bc)M8kIl!>ox3Af49P(G%D~Jb(>XB-ahzV5QS5(`TKxHSBhzE!ZJ)txwTPQmf zapk;L49l(dqDc%$kFB$pXkm;3Eev>oNX-Xnzt+m{F1P?ZSUl>*0&VHB%Kr?`(0(8p z-%hz<;OHN5uP21n%@>%jEvJK0uJG+Aig8_6%A-H?w?VJBC;$bB%tDZDo6MTp79}cQ zOB(rmR!3!%BKCPe`0iZNL%h-%%9-kAZ_?l{3Iqe-0k-G5Dn6 z!;1HzKFYsRUVwa@sC$X|i66Qu{p*n!w$Gu7VP!f;Bz~j$+x*fMt{@m-JD8#DRm6{ffzu~0HH+Ve zLS-r$GXiFECWac|)FVSh>~0n)Vk)}{9uQs3;7Pn<0x~;vT){RhLqys#FpS$dB zix{QAID)8*>&R^7nt_8iqs7oySQFcTvC0Pq5qf^Ktyhk6%D}fT2E6wK{F5-wa7A3+*Kp$CY(Cm_ZS zELU`KW0gI|Ql3zrP!JCwm!DsuY*)k=1GMI%+N_Mg&CB#nnf5kcuv)2905u}7-5PM? zXIU)7*4?6jN5NwHNh^4Xi z0v%ni%!3g;7Q!0_ujaPN9D1e1p+4SX{L7#_Wfb!fH3h1_?TL-(EflwbI1B)k^XSjm zmbEZS6mC{NcdCmNC8MF)W^Pen3PedPj8qx-1~{)|D>|1LKEFzaZOU^{H>not(8M-; zhjQsZnKvDTyu~kItT@e6L5s#fkm)-Wn2C{N8~(DQs8R?$Wh>f^gUp)?VUT&Syp4Ef z5A@5D3cD{nUR9PVhzHo7-mBb~pqw-pjf2j6@_^!FJH1aiZE$GBeEWd1RS|3t%nPuw zTqL$1u#d#k-oUXH@BrIy2Njs?353zj7>|VB$lpYt&#c1Y6l9;?ZC* zl>9$zZUFslAAPL&suH~XiSm{r4!j6TVWX>yUc2l{w|%ZuD2N*)_v7C|3{E%$U1S@~ zceYulu+t-(&-}{MHuMbk5JYV-W#2Twpr@$(RI4_)69!Vi`#k)V^n1>wMMyPkwRK~=$sW1y&zKF3!`5-)D z>b_qOtv-BJnE2r`wEC9c?NuD~ixR0I9qhZ32 z`KYaIo$sOHidE3+a4bE(e)Clp|BjpvxqUyjkW$ebG z>LAI-dLKNkLJ_3+SvAp?r>al{!l~}pH5H0LIMsbhLv@Iv{3X^mR*FQVNu9}meA$@! z_L|g41yEUzhMsCK!l)RwA}=*fqE$E5mbRb0!3@gUz)G=Xkp9a)pkG`Ihe;AnSqepc zw0*#A=MU-;m-?3nfPO-yfg6D;_!ii`Y(+s>CzKR*Sf@w9SSP}%PEUqnod_qJN*LJW znHP)kEJx>Ue~PiCM_^q}T$Z+;Z;o{VOq%kJ0#k%i}PX((aL1tRte*u(=)9k#Ms7QhThZPW^2TGRerPy&@~SmZyg2|oc|Ou^qSZh&0k||# zF$hfn8gKh$Fq%M)Ej2@hwc7a>(C6N-JvRu%80LeEW`q|Ow*`q?Lv z)042EfCn7PQ>REsw)XmbEGTm12-S2dwl?7u);kNZ$b?gC$4|o|6HY~bc{&z(-YqEd z{Hm5>g$_lI{@vc4>UFdWcz`W>78*uS8a^-^4HHgb*0~rBOFo9#Mfg9T@GG{Gu5dg{0Rv7u`5tLfJVgcUy1q& zr;u;98f#BD#r(5RV(kg1ppUbnJ;EvK4?Tr$C!E4QVGSBR83#t;?6y$siwC3S>(J=1 zjz*n6t45oM$~tw~fHnyyk00h}Q}WT{gEyj0!pY-bY(kraQ$;hLMw{LF0%@~O~A?Kp_kDlV$$S{U1$>UUbdUN(VAqTwTeAxjc}@}$6l-| z;bgM%H8i=u5GDvX_%0HOGc|t!yR)XY&-bg%VT(4?m>^&(CgD^~zk_I4 z^3m{)Lui@r;wkKZXbwOl zh)X|4dxTREpF4r}2&W*<{S@sHPCQT`XP3+5*m@rMTlzz0ZG8 zXNa)>LG^OZqY(g&>b-setq@Mt3$MfK5l+?Hb`ebxPSs2J8LLM)Rqya6v`08qFX<;3q$GeRj&hWrT?lUxjw z^M8R!LdlJV|A0k8DN=sChqY=O1+Ijja0-QYG`KS60oDpYqgIO_Vyy_rT8Yb#)TXA5 ziac~ni&m00CTS0eZ%b7)I2p@BWX zW%ZOs8khq#-UdISK%*f?#>Xu$4I1s-4W+MbNn;IMNi3?E$pNlNkatf@9_w2kf>f_H-04ojRP)?r$nN0M5XavQD~fSGTy!g8kc-D{#HvgPBIfws7`1TaA|XXXS4}uysfSannR9k*eTu6 zTts(RR{h=`EfI?>RrEwlgi{s&?1koL)`Ne`;P>6H`hb7yf3y2HH5p9;4pV!IHif`= zo05j+kSfis=!-T8CmT&3LmPyXjaB{8hT0i!1)shiCaPhsgSBP`I&r_*Ha}g1pB9j7gC8yYRS5=UYJ&~x>|t=04>+bj8`~S8h zW3;!8e3l&TrWgaq-0-Vvn0PoI>T=G@UKhCI*%bPZ7nHVoB07%1hLf~s4Di5Y4Ne-6 zN|jxZk1i#lFQ#ZPiW4}fK${MYA!v!oER4H3~Fz-jdDW!eox*NrE% zzJ_SZDlNqTtDm&zvi)YYTM(z7*7}P2QaE&|{D?K-TORt`Y-=<)ej@dDuD`8*op#kA zf}#Po#0?r8k)n{Tca7H5D9&5&$@(RVQyaA=wzHeGUkoA8lxzrL@x;Vu;AVHm$pD*W ziw5U)q^M-8*4vN)8+{LL*WjG|w;9k);dk?u!e^Gfo3?&IgJ0JG53s%WqSjuO;KP@+ z*%B0|4r(Jr-6yP>fKz{e+dsQCIBX{Q`aPO%2-WY`vPJI-7HO+{O?znP@7MATeN$_- zaRvzb^6a_xfa=LB;50sEDV(wX_!@ZN-NPCj7bbCVX@4nh3;YnvM%2~EwaJDO zh!IkfB948eFqeyl{=D!(YUO73}u4ORIU&&XAW_oofhcSn=bYGo!8EaiYu@K zzxGUPbwifOTCWTc-ZzX`RMwFgFL~Wxt;*udp4Ww+ml7%Vy$hZ=@}m~0z9DOHfJ|e? z0HN1uos`#{ruIl3(R=*WU0GcDt4O?Z5$b+X=DgsNbJ|Z(`E$;k-#T(CyTpN;T3@9K zlkR-~dtQo#n46y0e8j7Mu&lsKCE&R^cfei4Ba}8YCxHLn`&H|{;kcI?HUi4ujV2HA z>Sb-5lH!n!6_b9^Mk&1=vOQ3?xu_ejjuI1_!=Y&T6>Y8elo8w@>u?rus;Nw+%yoQGRde20dT7IL``T}WP?K(odm#C&eg=J|%NJI?xP)wq_F-$i% zx3pEhqhj&87lSwX8gq{FjiYE^V$qDYzLO4ZJ>-rSBR2k~Jq6MMqDj3rK+O4F+p65b znr;-^|1dbWLs=uy{#UJ+Sp27*T`bCe(^@K{#g0Fq1xE%6zG5;Q zY$(HsD~|P3VwE8X_mw7!#gacj$8xEo^8ckHMOo~Ub0Ota?--8w(s0CS7f1L!57QxD zIa1z3om3!^c-R=xly^`Ah0W2CPFKA2kJe6{e4ssrk^y4&JuOAN^ibQXo*gOD-h~)E z@~;*mPC`!8#!G*}Z{Q6!G8W5EzZNGm6y4Y2HonM6e%XGI-~B*qCF&GrD4h8a9QU3| z0@P7zAHnGHyJqk=mcv;38FR7^C@ewz-O!%BLS>JM6CN)5Pid@`2ySE-0R4fYT4mm1 zA7jl$BTuI)aD}(H)Q~k*?uv^F>#N=##V?*3Aj^HKDYWWV57t4wF^VrcJyyLsiqF}Z z2Gyogeq&;(YUF4d%ECnpU)GV=e;y>W);40Jl~5#(gI^^eN#ZyVfWs(8kB*cvdYJqz zWAuw$7>@2e8>>znEr+A}Li=!(BQ@Y~G-folOUX6`;-@hS6OZ{pH9<5${MMLt7eW4P zt5PO*1hHb#-G_yUUIBJKR3}P!`@#?6K7mf5I6n~T*wj^MlRwC4K~9;L0WjA047SUB z8^F4X$Pgz#yea6&3bpgWP-l_U%+BAePR>RrsS~rww^Z1(!EB(KlTB_NlZ|e*mwNJD zt)WN^Wi8Y-GMm*U8+5dO>S~#71!YsqMoXWL87+M}ikyW5Brm^K3|Hy8sGnt%M|s^1 zIVq|qvPDv~lBOO9P4*5yCxW$CZ%dOm$Rx-Ih#t+^NcF0;cv)KfDVy4Vb0q7ehL54D zg^t0hQHB{&Y`hvYhH4fth63g%7%XvUI-X5MR6oe(S$Fz~)-6~FUGvM3Z|r0Q&;`E? zZ@S%=!RTsVhDP`LGE}}v&!+Uy=5ijXwG@%=MkOQyhff~G<2N>SV14+D; z2SmJ)m(iH6<7JrWE*>O!5f2i)g$H)=3Lap1{|*wod-At!FzL%;H5c8@WvcS;&nM_AG|9EM7$^me!@#~89{VI z4ho9b<1!l2-8jJTVjR>3Z^c1^SK=T8-iOQZq|0y&L~n^cX4X$p#WFLq!l64{hk+3a zwpOpkuy$QB>qNL4=Q0iBH28l_n2lSpm`aR?YJFn>UCpNGsMduWw%HBa;)ZQ?!=7`) zcDP|LxM4f(7zS6h{<0k#|_)-hV6614!B{pZrI;$*gXd(;#;#Q!wC%nU7eu1 zVayHlaKlpFuz%yF77Wp9{ec_y$PH5x49Q9o)$Ax?4c#!48|LYTdAngv+%R7^%-;yVNq^a3pdQ{hP85Hm0+-q69ufT8`jkwa>L37NatgBt*qAPx}eqid^c>N8}_&xR^f(Kx?$KI;e7|{+10c>c4E_9dBdrz zI+?i0bz->Mbz->ebz->wbz-;>Cd?MvmTgd!ePT~L)*|e{m3J*w8An81d-j+w-nE^GA1!nq|4 zU$J_fcqx$$1@iBStO$}RNlb_2WD=X|g?HFtj6Apo6&4k;RLH9a$TYJKvGb zRqDjZPB2nl5~35!^}<{3My^MlV4-zMjO)w_AvxBWt&lnfhyz_g2ja%te@dKv92cz7kzuO5-*&k4XL+!vhkogv=>_n$!3{^ z^=1nI4_Pyp@?`{eC8i%pOL`g<()?e51iAb@p&J7_w|1 z&X#-OvdJKK$YKMfPkM@IixMKLvsezu-N+)$*|sgV3Kl8QHa6k$h3vB^LTA5GZO(d4QdqggHx)3ZtOfovj1j3LR2F>DF&?vH`+ zz}GDdYYWD*kwE@zELA#d9N9QFjxF`VrJf;_p2Md3(x}jXT0!}wlHyr;r6OxQOBN4v zSSn;s8P96Ga8YPvpk@r406U0A6Ii_TK|is50_+e*PGGYj$FT|I$)t%;d0a*s8Fx;k z(c!m=P)b}@8sy?!HXAaX&t+DrY=rRpREZFlNo=JTt~(96(8<&g`ID)6&rW8mAXjc4 zn*hntJTe@c&z9I5+ChK<2#d`mGpeEeij6kHjC{A`hi*OOG%$DPA`L_$d_lc zTA+_FV*iu$Nn+V5t*Pi;%wCa%TybVKOmpTkRxQ4H5?*q&8^;>Y5iP7*toWvc9RV%t z=dh!Y3@xR^vy8nbRZJFVjzgqRn9GKWj^)$?*O#+{k~v=Z%wrS9zEYMZuFqwmlA0&- zwrIg3avpmXG=4gdy=^beqis-{Z7bpa_3&cWL)@MZlM}vmW4LnE0ybBQ=7^-nnOQo} z?`3dh>_RqPvX*isu9a9f0}54A$p#7UMfQ*{!=v+1vA-AmDzIk}`vi>7dz{^p*%piE z_G)HPwU~YFMV);yc6OfEp{b~>V09onc?mlYNpdB-0ZF^1?3Nd9bezpxAT_0nq$gN} z*tLwt+!o8(*C77aa&{1sy-%=nQfjU^@R8O*99hBMk%SpY2o!M6?Jb^N$=(3ztX1r& z7rtR+*a%+DGJu@Fn)>po)vQov?Iq@X3Gp%VNt!$NJxTpP#=;7lQcXHxO^Wi0@c6jA zxKvzR4aBsloFB%T6cNPe|2Jpf`4n?J$j1etQQz#JhFPO=Qu0@~miC7f=h z624)jLC60oHp^db-e})v2(5jJ4Fh8ro}%F`m~Sz=Mr!EgV2rZDK7Td2JJGM#mr)T8vug z5X3@fAQn0TvCs*Kg$_V0bpBzX;|~j+epu-6!$P}T3$3{4n>BHTjz918`qh0ZT5bbMi<_xLPxr+3O|Fn9Wt3K+ZJ6YHL4eLd(^ z)t|)Kr&*`QZ{##+5G!9^{Y3O)*Tn8EtfP2lGYfJh-xNnTvp%krJAysK2D?&z z72}>^S+0~n#Gz-{AXm!Y!fOjlbEW(%#%ysf!b2>=z$PxmRK|)2TUdL4Nurl+8;*rj zmxH3mv#hhBjmV9}jy*7at$CKUbtQXC@~5@TOVmBfB3yYsk{7X+1sewF9o_(Gpx;*3 z&X6W@kd(ggCTJ2{S+pxJRPxSlWkH4}dIvZ{YI?Ahbugrf93`bE>;_Hn)?3rS8eP_p zUKcjYOpCU$L?aWCTgyzn-b}>*Y%BAjywE$NY_=;r>fclvcJr z$J!gxMD8S|BVGh68@sZm0Y=H_rR8oiPv~~m)5t^Qo-)smSe>oiSWFYwJbfhdz3nW* zFpoPqJx!{*y`6P6R1x_x7gd=%SSwfFK*@uOfSDc4WT>N8r!%CwgF9G)k%h>aG7CA{ z=Xn+!D&36xL471;fev9QuURIFda^$DauYjSW_{*)*1|AEFJb3ML!Uj*`k17$Nb&3* zSOokC>giRuMn>%;Mg1N)t*>~&(Tt>Eic1acFU9#8WhQ|_DF7`HWf-P+zIADM$cwC- zAx-4jQo0`7YwwH9?8+-~@Zt zi6y&|mr8QCovZ`CROj!?dqVR3UuG@CrR(U$_0_KJP*W8r&h&+!M~eC>zV`MYF{{kI z^<|c7C?)b5Nv7Dtcke{=UCh^2pjrwH+2wF2y(C{Fov?Tp>uX38SxD&%yI3>BW%MHb z7Af6mw`0g5@-`_A;T3I2)64eHOX)ScSw}-Rk#{@pVk>+%Ya*8FN+SX9=y}`SLb+d)xf5OkpTP@zjqTBQPZZTc^abo;U0loXhDdvr zb#lDB=jqC`p{hX+%V}>we$tCC@VOa%8@1T|M#VUWc{@2?!81HF1+TA#(;#V2V=?7SMqfLqYhs;7P_UZx0utU7RCGXAw*2XoEL+AyiyuFCENGTdD9pj1nQ- zMdbw6!|q#RKPIz6uYw94W>LP5b|v;e$tKrFzUhcR;=yJagJ|NLEX;^M`rJvTo593f z7H>C5>@1lJ7KH5#f77Q?MoWJ;JK`83i9A+HKYoM_G@60P<0Toou9vuZg!ven=+i2b zq$cm9jya#m`7%rXf5-)r{N_>C(l9{M(739rz8sRZI{m5$+#Bxa(7y--9cl6h!W z&G{1E>D>1g3w2dGM+#hd%Q3xBzH&*1fz!UKBl3JnCf7gvw!`(rTO@fDhG=S&{S{5S zt4XRtNT%^>O8W@8G4mmH0gB9V6g^ ztDhUaPAoajbXN^Oi^5Z&9gZXAeOGs{{UY@f7tZwj-IQI!3XY^(ud#MKkb;!3$MDn4Nqu9QdO-Ot$+ zF?lx32$`>HK0d|{ffT4YV*RIVrLpHFQbQsYik?eYq?>G`9C7e7HrG|wJ4Y<}gyqXi z#=Zx&roQ&Um{j@Xh-06#3fCO|IU@Ze>t;kLo*n8zFvU9N*_x^pv3@yAaVR2@&>V67 zBr7o#5h*-JOgqK$TuG5R;_Fka+?CWKM`WL7OI%4YIpX4JR_aP>lOradVN+d6?Q+DK zGmeoJ&mZ-8DyL}th2toL$VuYv*D!id`ogi`AaZ9(e(4Lx28_tvkQ^=^{71T{LrIGO zJfXC^k@CO~v0%YCtqgNL#&i=)b?6AAJGb_bA|3rCGw2IA{Js7q3os&tcmt$`mxnPeY|s27KjM5)yg1lwSXp;}C<$BPIFVS1jC!Zu&aZSgFMH zwPQ9W@^~p-@U>$nL*!f}ccg2R_9_xR59#)O0a2z(1tY&zG)GTrSD{tRq;6Jl~-NUbi)_B0ARCB(X?J zB!25y))KiwlFPnjj~PuzFYi+~~eKTyUjG5GPEW>aJk+)0fJ?B`uEBOVX{J?@LcR?mRoIHS; zUx!DP_t4_0b7vLwhd+f_Si^xO4=myEe|qQXo$+v{Mz2HZpC{tsrQ-dBqavi5qPHv`?>o__xxRv0{aZa}5Jjj{3#L0CW&p5f2POjq^#mQae@HVO^B15@8mjm3{LJ0C)d~+z|RX#cDa*Hi(FjpJGn17xsLU$lY7X?bu2WU zTuSN-rH(aMyXJ}`b*#X*M{a`# za1~2mg|+XME8;J*=-~c9oZeagFK_Ba7Ne%;3hPDII$41XRgS;x`9HpqTeG^R%JIS- z-ry47Uu4}>NCSUj>F}aL?oVuhqKch>slTY=?oV*D`KBr&e`Y<^>#E54nT>(3!iw6T z*&sDq6Ayldi|_xcBJC3Et9XeOkf=VI`1leVrMA&T{{a zHZQXw>aVJZ{e|^Z+KVZ_unFpIRlEnNdP5ZtFny?s9#>dbcpatW3S8Wd)x^OoY_$47 z6^*aLE$K_Dm~oX&QCn%^7TGsg55+@N-(X$w?(D}m;69dFu$yp6`!^`YO(=B- zP4Js+GW~L06*#x7pj4#Ygx@vc`^bT!Y)F4FQlmE&skd1B%C69KIzFa%UR9%~ zAeL&!uvvB4w!lkA3?C#p6fta5Jrf{cXCZ;U<2phTMmq@Ek}wVlGzaBK!o*zs2B?Zk zawR1XMd*{K`I1n81p4x6p(M;e0(}5gmxS3!pzoj-Nx~c?;C&UnR1)SQfxe15PZAa) z0q?Nriz+3h0x9&7)FqOz3<+&eWVs})L;_xM(N{@=1qt-wRI4PcK>~e0b*&_UJ`a9fj+hRk|gX#LM&>1 zMH2QRfj+$Ynj{=R0)2n=bxAmg1iV_KS00j-H<3bLV?81XZzBQk+vx8|!h1-dZ?nEH z2_GQ=@8IaiCE)}T@HUSAi6nfE1o~j>Nl7?^1iYc6e<2B9&qNAd*3rL_l<$y0pK<+O z63!#R10^mfus>S^QhiT0#<)`A!-=E+`-?oqO{ti{PEc{D@0PLQiC5!tfPeSBUxcuMQJc^+9Ft~5QjpPaJ95P z&zfAH-)-8E2eu34t=fl2SCobq7fs5YmRLA7JGUTf{FoU9Q^$|VoiwdzT19DHexy+d z-`+70GK%6;QlsE$ZIzA`?};xRUB+N5#Q_^*jA#K+gQCfwS*zK97?BE(rN*dOgf z`GbT8N(jF*F(k0Ut@slrQI@0P$kL>>s&OoprW)9l`_A54d5IORqBv>F?z7-!=JSE%jR3rrd! z?u00wP}49`K1B5nADcb3sG>B$X~M#(1>>@(O{)+aBb7RQP}2w=+o-81AF9TwrFE#B z0d0N2ilng`wIdHq!WOTORd2-e8`t-$o;@=wuP`?ovRN6W)KW|1S51uPmGL$Bodho> zoU$3y+(T&r^=YA0@Xqly6(}4u)s5EGA#+p|D&`MWeZ<)aB?fDR<_P7hn%52cM}6+O zQXhwggsIbtD)d;5pK2b_z*hs7C)HNcuc9mvz|4~1i4rw==icEKO8BqJo3x1XxQTLM ze0OFrAJ-zG*53$&oV}HrTc&@e@^@O)^YFuLqIh2a$aa*C6|pM;nMEeJTs14VvW4&_ zEgN`L!<4bS@qpSMlv5)zFEG)x<`U7{`BU8Sil)iC`MphSe=nK`3w9D#qgm z@?y|scv%xmb;~VunEjl{czxX6S*`W=O5U zQ`$tSks2S6=(LdAdgxIn-lENHb#A* z@-b}_)IU^S*4C;-@fB?&_!n)x)ga6}+~G0)s*lF~+BNfNjHzY68qv;6t*7xjpsJ)@ zuo8f!;Pcv5=Y`G!*LJ9;p66}aFdh>%R%-I7_O01nFa*Dl7{>G4N2y*KU*0}htxvjP zu&Aj%R{575!pX0E(66Lr!!+KsLz0I-X5Zd18piSs9XvcPnXLvL|4f3XX%K}g9U@>< z3}shoaCvkLj|&>?GGL*tz~#d=&MZ7|}-$!>Lzuk2K_1YKB9gsj1FAxOdieOGUa0XnVT z3}fi6dUFi^MOq7tp{wdGF{WYA3Ip_4y*0+3VXO_t&_(sO7@%|N?Jz)R)Z1$%5QZS` zfB|}--VuXF7$jqW{-<}sSR4i^7@+&{)d987(=Ji`(O;+P49~VdYax31N1JvKL(K)48VY4 zkcPn>Oq-4|^e25F2IxxqAPgRqAbT)I|G?M~j74EE6oViPhGF1?!Eg-Flk^c7)WcvT z1_2n1!T>!-&%huagV7k #~t=rnpJ#=J1d(w-}MPOp#Au^2o?_Bf1%VK5#8^c6iD z1N0Dm0>%^!CSrhYq32-Cg25yV>R_N_fNr5r#u&PUo{O=%802Bl0E5hY3}Y}TzyMuB zFT~grj7`B9I)XkG19Sm>8U`u`MHpbu*NZV$1B2-pU{}{?VC-JyOI>_5>g9Gz<1s1w zJ?eT;Pq$lMtlpUr_IA7FornDoAP;*tpzZ?*VGp-k!sbYXz1(i;8Iwjl?CEyPYa=AW z-fp*yS|$_DrRdvRe*Lmk3?U zZfWs+F6D{tWw*SaBhdqpEU{ZWR!E3$1`4-Hgsx_{d{ikBx|`iH@VG?ia(2tFKTCve zXSaA-@<;``p52mMPa*&q@6quru>EfM;p z-C}zn5xS+_($7Di6ryX|EyL0zLie;=?iWggE^4>bUMdl~DKy$ziO^N;mXc*VB}9L< zTlOE72z}OWY50vq=(l!@_*EkGU1-tk5~2UvEq*=)R2cMOFmO$YaE`EB4)l`9lX%VM zN`yXcx9l!CFCqH5-J-uXg|b0kw_6%yOeKW=ZnxY%DG~a--EwTiV&b9S+bvy}N`$^| zw`_YwBJ_VK_U97e7+|+t9I=Gb;Wz+(@MDmK_Xy7QdU=`)E6U%z^RPxdy3cf04)YnXV)(8;wfJ}aTJtzP4j2)9a5gLn zGs1cI$vu=tkdKw;_x0jDb&TT2Yxj=*f60@Sm8bUatX@|6ivBItY8oGq8qaU{kF=og zL)my?dM6&5-kFyVs0q&ueo*hIjNwXN4?ZJ5lBefo^ST8?cu0B|{^hWmtMbyk%W2BQ zYPF@}yfz`64;h%^i30{wd-2_A&3N+o2>!=}-m7wxc;p~Vgd+&DJ5Zu_*)@4tVNG6` z?aAj453%5gf~9$usq@e=1C?UFX-F^r#>51^amXlT7@+=q#b9sVV_X~$7!nRO>�A z`}00SeLc%*ZpPH*`L!U&5dQDbZYr#Zv8s25`r1RP=v`kQ?mHPnmk}kcb+jK5QM^|mJ1^yVF4}M zaurqTQNJL_^|nci;E|(xDiQyW2J6GSP3{TRn#fy>PF5P2k~JZZ7-y=ghH-R|HJQz@ zbF9jmq_pHpu9crJ3g*uyHwC+=^Vf6gL3R8%8yCa>&57ZIvg=ZBx|i3E&z>M{nK&_y z`V=%5*uFE=EC?DjnXgLiV%pdb3YNj|Wwhj0y)N{gaQGxRTwy6?DNrVP9KZpZ{1CZo$zB8P6ss0plVvI`PrHtMj7b@6>-( z-e-DWZ?8c)*>$?e(~!N>r}4Cxt-RliQQUK$m7kiC%|Bmi<%4IA=hI)c@}Fm3;GeFt z@?T%j`GFU#Ja^Uz{)NrDdMAuTA+uBX3&JXHc_{Vy1_0;RTSa|eC6d>ilfuWXxAJ*& z3ixntM1603OFSF!R606$k)MV)le9J?TeuUl>v=N2ll{0#tYUb1qpg_(REf@}xzR`5Wa{esEDXKe*D$yDy&3f0+&STRfKk z$gSeqA5i>xOH%mwHCCbCh2yCQ0DKo&`N)@Y_!_X#rI*I>W3#{#OGoo_b}PTRbS&2w zS_P}GM)Fcy3jckzmEX2a;>}8|e71cw4==Nd)7{lz?!PRBzdge$eoa%8_+|jtU$Kfw zW7Ig_u(T78SZC$SO2_hB3&BpyZG7wkD?hM&6z>AoZ@*$RAG_Kr5?)qo@gG*C@B@p1 zST>5Uhl1@Zo51_qtYXQ2$Z2AE3Lgfg`n)_}dCX(VWBJIH<9M@~R&noVHHNFJQuvS1 z+}W!#dFLfoer44ZMd1T%v3w36&HFOSAIW)hYa&`BuJo zbp~Is)+!D((`xg$HDLFZapK30S}cDXz-1`0ugK-SX2tPW#c(dltUO|E4j(kzDmv}g zeE6=lllY`pth~dzxx7v}5nJ-Wms9x1C05b$v{sM53}E(LD8f13!`^mi+ zqy6Nk7{ise{uRb(Klv-hXg_%aW3-=qh%qb5c~pad_LIRFqwQoJjNxKhZ&D5Sm^hp2 z?T|?O$sQQP2~i(}G1^aNVGQRvJs)GVpPY>`TrlfPF-H5z)fl7wd%%aw^86aQC5?V3hWgr5MA-t-cOpxUkh<#~3bZ^-7G< ze)2HJa51Z&!Wb@O^&c@t`^n1~qy6OH7{j%zu2>+zb*t`&G1^YnwBR0-_LB{eNc+i_ z7^D4U7mU$tG9`galXpdQ~I>cy?8H6#~W7ftP?J*l;jP{sqF^0=Z zy*tE;OIcCDxM>x0D;nr@uCfsNXsI`k*i^}ISYMr`hVTcQdWsw`HBg*csRUP!-`qq& z7*x4s%WN~2v~9W>+xvQdGZyjY6f^e9TTc{m?37jjvqCK%x1*=X{6#Z!E8kH|K^Vl7 zw#8Nc{!UkkL_#mkS~+58gbC;L2KeT#2@+P;d2fXoJ6u^qrSz3oKPWV5lZ^pp?9|?# zW~~0cd^7gOekd1etc?H2k>BQncTC#W!@*{LCq7!0Xv-zsH-$W^Z z8LloL^?6V6eS#8KdHnPFikQ(%3920N#n)!6)9C<}XuQ+uSkbsC3l?_{X@Qk*oH;Bd z__K?iyyxlg%9p>oEGZ)Qtm0Yu$~RCJ%IwH@HDyffnyz??@aC*ZW!$-MP2ryzoXKPQ z#y?##Ny!Z$ed2i!r{b8(oL~J^QCw3k;D7v-am}@<3c{eu$Qw7!Sj4UOtBJU~pzqfg z;`xNXdx`-M9Xh}I8|(-$NKD=YS!dk8WRFY;15ZwEPAw4;ivv8fVDy- z-|@I7Pq}ZZ4SzC20TfiZ>8Y-)*{(G5UadZ-Jcoa}pE$cu%ZGKvH1TC~Q?JooQC?6G z2N`Eo<)Ik``)yIgt0T1nTzV9U{83t*vB08$T}EeXK_X=t6sq0pP}z+gAo${>7HIVH zRQ8!{NbWC^UuSiU=e?C8MY+7XvyzYNma!u0Z?m5p@AxX- zE8rRP<|K-#fl5yiaLbY8mq4YFf;dRj3|9V9LJa>9WgC-}86(w1aW7oiBbHs){EQDH zly6nZ*;q^Y1Bu>7d6aTQ5d$Bq1>$gRu*0v<9CjF5M_H&K4l=ICD7zH#+Y8W6=4vWm ztexu++!UwGQV<6T=u$CaV<+gnpPf?zjj8p}0LU?b^RFpXu0!4IomiOIkiz^$z}sM| z(s<aQ^qOcQFkqhr#wy<>slxaM9C0`^^#jEGZe%@#%HY*==v1B+(z-0Q2`Z) zqP`8eLEvp9w^vS?@=+ZXa2%8ukhF>TVmk{E(6)ibi=9a2Xt3zu&PuUZHr7$>TL2Zr zK>}@H%Jr-b#vp2F`y8d$wf7Ax*K(k$(V{S?l+&nV3qxbE@(`iLrJD*waxF7@N$B$PodvH_p#=8iyJeECypR85pypiU<(0 z7`NvrC;kt|{{!YD>c>LYvXm(Ax%6T?hKf;xpkv;jk4420ZVNQJEXKb2=D#pSc`d9XTD$~qmi)}oZ8pB7lqiUU1eLpk zO@YB5u>ocQGZG6%XJ65GnG#@(Uyk)8B1{fM^b&1`vLNXgi^@>hp>^QX%NNFo87o2A zp$*WZV98(u#s(-OjC)bWQm%X}u~D!ZRXSMF;)`Ldy0K0upPKx_b;@-!3Q1vtMo|N_ z!wf^w{MVcUP*CUvlotp@i5nj>A46<$D{y$^Q<3$s=h|Be8HF#(^4Tc=#zs1K6wf^4B_8B}{cas$5yr)zlu!6+KdrCv&{c8%Wo(U&5QIm{rHeq7T_s*KK#enc z+*bN10)Blgz>|eB;@=d9&c%08Ct%3o-Ka;X?#hSIiX&fYAUZvUR?Iu#=(yV-qe{T0O6@7CBn)*u#sexFSyn$s zt22?+S#7eqSf%8$>K{B%q2?q_MX{+W6ooJqC5Wj|6vR}NWz|$DN_-1&%kCC+vheQc zD8{!I6^a4aEJhPg6^cQaOuoiT?JTiz)mzOoS)`-F7j>X0>G1Uj9jjBIwz*5A#ial! z?jhBoCOr_<05;XU9fWEKlbYZV6|5}z*s^Ovv3`W9e)Vf${RorpUE!!3G3jm?iS--P z9h~gu(pce93zT2z<#4j8wNN==Q~Bpns2p&D(Y!Y5l`Pb|rw;19&`0fJ^oT{3#3Gev ztf&$(sq9r3RbDO!lfuctJS8)m?l(P!f{#?<4OY67IEQBwXTtsgu44SgQ4uUt)b}F z45~YzwWBldZia;bY*yE^1r~xZ*?MYAtTW*D#=Takm{?@yC2deKVXCu#J5-FA>b$f) z>b-<*Jlh^EvO0p^+1;=fu+cS6bws^@O}%wHp7m3*{yU>8(In3TQT6_p_- zWx?H0*}1JSkHhKRNO5O}qdoifKt+H}McaC!BEqD|uQw`^d{neD6>CYDY8l%X6$4H- zw)aDw$l5bNEmZjN69srYIFt83W7cYRy4pwqNSlhL;_5(k58Qw;HVsmbdJq|Q7JndR z^eFWeRV?>o1$d@7S^OGq?)HoaW3aq{&GHV&!txTP@_slL%PaX<-VWojyo9N|r?RoU zgvn4tCSsuxlcB!MK|{6L4837lX{^|xL#xDZfh}41WYjyW($NtLb5Sp0(t9os^-4bK z9aVsO36tKNg_tp6(mP|S8YHo?ewsSejIv^Nv>7d$u3nc>D%k3on7%PC1_sPhSBiJv zadeexv$14=O^amA!IBZCk{z3iqYh#tq69}BVo@QE&d16lCLJ9Yq7Ho_bjbtDYl)CW zQ2A?%9D3$2LOpaWX3BlFlz-<&h=llA}wp@`S1KgY9T^!ld_?WvCZ1=^eTp z^=`WiBToAj(ITk~^d7wG=%KHapGhzgJK(-~?mFtEf}5u%RDqK%E~o z(YhGRHljLWk-Cu0s17lyTfPO=o%jOG+rF%p7{3jwdFD5VdCzP^m4Jixyn)umn6&Q7 zH&G*Ds%6OAsF5($a@%%POPJIqyn|{HliD}lMYRn-2DSUj>WQVhKy9^8V1WI57ixs4 zIl%UL4=YI+2Uz2SO4Li3M%FeTpkB$xk@dtL)GINLtm%7EFJT&4PkxAsSJ#6<2afY| zMO3__Ny84HX27O-^FKn(fD?@G528}ZLi3I|j7p=Lz$9}02z!ERyBlao!lY)*Ei@!z((}V@)HC}J=%`m#H5Etif}Zl54*y8{ z6ZHTNGBW={Js6dG?*5GpNSGX?=sq?eVX9rV2dEctva#YJszes4wEPPy6@`xL;8&w) zap5sEU&`hMMgO!Gs)e5aBKSCi;O!iAm*~{;2ZIK4`hQ6}82}Kv3y_!qIZK0#Pquv&VD~ z*1#nQQ!*>ZcX$AJKK$f1Sri6g4RBrK zAB8#rw=*V2qdJJ1t$3z3sv}ITI4}m)5hiv2i$!&WsrTf?VPz4M&P#Ps=k7GIH1pbzwtPPMGR?Jsy=yKGrqAF)BxFeAz^sZL&!3(nQpYEYhnq zMZMuuU=o2}5+|-%3w0$(Dz~)* zl?X{=bO+R!eO4{RpDT6I=_}|&ImuW-h?*Vta3`!FVH(UEcE$=4ronti7qq72W7lc< zJl2XZb)9#+p^|M&;OHVHNEryfg*FyzdVo!9+Z;Akduovi;vfTlG3j7N;nxy4bU`Yw z^Imr&qmOpdmEm&O0XYIs}Tn6t- zz^^<;uj$&)rev#`T7Ofr&IyNP$2o9Pe`}U@-xRtxN9!YnjPw#M{r}|ba~yKcT?9GT zU#R^k6N&EYwXS0RaaO|s&Q&v~2}`sTGbdxIBPSzrnWGTKtmRr;Gk=Ko5WZ!aj~D^_ zU!!5U_Pv=kB<&&ko`e%{I&^??h7XDbW9tt^fouiNj z6w*;1@v7F*l!yGgihobR8E}V<8XW#8k71=_uGPf8gP(tb*t7$ zmC<@{Xn8U!{`o*l7Xby#OI&{wei8A1Tl+`K3w^JHGv*8n;O%b&8mo6`H%)H%Zf%Gd zy#Nlvs_%qD3z;tv$C@fiE4ATf6jWrHQOI+GDr)S9;T5{aTv7Y5V|cx=AG-$NAhCZM zj69i(;lwHPs8&ln2521nNZTvfM)@JF3pff&?pos}86y&pXr4y%kFirA+h~6ji$l?! z$Fxi{k(lL{sPUT5G$zK_;RqNE8EEhm+Baq~W-oV>t0!tNgL78+5etmnqZf2eloXmA8dtTB(Y>SE>(TBK3> zo%WT<2l;OBo8eDdl=%9bw#>}rXRVF#){mO6B0e~;)e&F+WmqW&hJ!D1(S73fn3Tlr)TYQTwHd-M=V>;`AR{wEB{nc+r0n4>$wE#>6t{ z`UA>g?5Mn?1u6^N@|x$!i%)sKGn9vKI?`E5L}DAh>$XLF695%hvc86TOjck;Ez`!z zCnSWmI1IHYQ(KG77D`)j`YLp_Kb*orV!<_Skn+1z_}4VCGFXWgeFmum#r6orPprGH zE%WhAhu=HBG4M?ncO#XKBJYNlsXUe?N%_l5{guk5{+!0Mwnj-^+i${nA19jr3GNLA z3lg!nG^-kujt4qwbozf4dEVB3sNEBF^v0kM2K_J?fI&J2gVx;9y7&ZQv>b1`w1-SS zg*J&6fj7bApd8I~Seof0mziqnYQd^k8Y(5SFk@z#o}|v9!YD6@3x8_wDVvbplyCeo zP~DKuW4`JxKoZu@e{0><_32{4FlCs!Hk}84-C0>Jnm&ZJz`}c4J>|43*-5u#0a5VN zTHpIHf*m*0e(ILCNWAY{<25R4FHS#&($AIo{i3m&;;&~~8?nnv@rIv9ViXo>Sv~Ym{CS;c z9ZZzT7)x4xj5$+%U5zD*hYFLKzUIN67iU!md$o9|nH*3TEDF!F8sdC)m@AGkhYXp= zTX=ZEG^cu)(tg3vT8F$?V{y^LCHTObrHHWVrp&iKY_PahoxQ5g9Y{SbYalwLIvPxZ zrvG7rRtR^z>Z{sdF=e8rE6<6Q{;Z4oWRSFYMgXg+)*URzkyzx(aRlD-2of-oRToi# zEJ>+N966ZO!gw2gW}6qh^?4zf6^qOu7O1A1ne_ipCQyqON*}lMz5bJaiI^F{mI=}b z!gYi-6s*uU5b6{$SOnIGYX#4Tu?R6G$RYJ8jI|P7g25(KfFjWaPvs_rIQWoDZ4nT` zLPhIPw_KV8IuzQ4^f(ASO z%GCn6IoDF1It2SQuYNr2(>PG71@7y5vRxA_3!RX*V1JwABgB|aeH z4L%UT>wAFk>RxI!y0-@+cxew5;f*~I!RvY;asywZf+yb8OAV)MdVuhb9wfvIda1s2 zI}cLe)jY@s@8to)J9!|97xI9JxA9Va=qg^Sh3?_O125sh18?AgUc7z>2=Cs(125je z;{m>415dnj2Qv6l2_U>|2btncJ3x5NF4c?f*ntRMumd9Au7d|&t%C>NtAht#s)GmK zsDlSyr-KLHrGp3Fqk{)tqJv!U1|1-{K39SeFV6wQn{)8MYjg0xJ9F^B3v=+m+j1a@ zSLL96@SYqH@sb?a2`|W{hSKdgC@5ZyORY}#;^2Xo;-D^gBMu&T9S#!UUAR9BUw}Q%=>{ym6=snE_v75BS(x7beL9vAO}(UC7gf-@DrkKb^lBCKS{1aZ3ffWyZF3;JM_I1F;edqRs)DvxLGM&S zJFB4GRZwLW^q>lQp~@XQ=(Z*0da)ZU*Jo5gFH}LZ ztDw16P)QYp?g(!tkcXGk^4EoY-FXAZRb5P6z`78wWL*fCv@V2eTNlDbE+L~`6ShiG z28&Y(EGBa3P*@ICG+aP;XmR1&Pag@Se)=d;J(0Bt9!+2jg@=QXktzBovgiHrzHJ76 zeSjXmVsj$f>R|`D(vD)&3|JnWnah|M*@E@tnWsa`P0RbxgdgE(Woh_ zsn|u2rff1iDx0zw;nBJoq;oF)ei0@mm`XKkL6)RSjh~n0)E1(Zs zv(a9EyHdrpfw|l+X18Gz;PHDKwn*mDoxl6AmRQ=B<$2+}YU+5_mbC}5_U+gxFPvvh z@}_odD3BkvW3%8<)SgZE!s*xK{@tFX0l9kzHWeNpb^tEU%C0QKME{PgF7S#wvhjg9 zB!k&;sy0QSjA3h%Syx%I9%6SgtbE5OvqCSN$W5VNl3|fy7wtN+`S92;A01NIOh6x` zfKI%nZ^}Y>!$fLl)){!qJF_C$Y;AHU%@`+2+QYi8Q5V+B3)cl^f_Yu2dH(FeR>?x7 zi5+jVaMAI3Sd^dd%KAV?@z1kz)cicFfX9GtY?T)-Da;&hbYmGn?%kculsTk|o!#Kz z@Q?0nI?zY;fD+=;!@Y#R^kj6$u$4^lyeNAI7MJNgS*}06N+3nCKSqm{y;!uk-jg+e zyh3`hd@o$Ln0cZ31mxu_=8sh@aHo+ag4Cs6)Qi%3lm6qqsd3t;QV)AOl@&^zDPln% zSmK^YgZ?zO4>kUVKCB4R2lpjISM+6tfU5N);;eo|{I?&Oy{JEBdbvOGMhzhJry1Mw|G*?5^v zE3vBrF8jUSmxZnw3CEM&hOwp~Fk=`S509URu}pY$98PHSaI&iJ2sRpsxg*#FnMVt; zd$STOu8&~pKu;b?Xn;x<#*r2gu%4irp4rIU`-6Nw|W01NviYzrP zgXPOCJBhpdp<$n7uxu|}f|?b{9nB_!_&1|jDLk^qunI3+nVMYc3-$v_h-jF}5@kkR z#cKzY8lpIpVm-)C7gGKG$1 zQ@wD>Ym!%vWqFX-v$4!Bb)<{(L(o>+$Fap;xF$B`+Kp$uKyJ}^>LCxuvn7D$XR}f8 zIG;`B={>M2{I`Y*+R+eEINJ6z?~+tu|V&cL(Nc`!}7hU zE{S=Q@+OTFF+)IR{sgep$1=%fd?+j;epF?c;K=e9=I%r2QJIufiJ_r z16Sqnz*RXsaH#_iT$RHESLN`)H(%g^t8#eYsvI7;Du)NI%HeSrw;1rmWjQ=>Sq=|e zmcs*=KDfzvxYa8(WuT$M}1 zV;`%XC+6#{2UzR4PX5+*GRu+1>>zgMYT@G0WE!)ga#@ZSF6GTeE6ZisQm(hSI|W+x z^TjMuB;`?;FUw=!O6E8`>CoWgd4;M}R~GkA2H#y-JhMeGPXP8PAtQh20DX$Qm97sYHd z&MNK^^So4E8BVSI%S~IC4pv#WKXn7uaw~$P)9rDq$jJ7TW=W zH)pYr9NDJL`M=o)%z;@E-vl!4G<^Z5hoh29;438_TFApOmrOK)DU1ounx= ztDNwopvOk%JT^M!vC%1yjShKibjD+&BOV)_@Yv{p$3{DM8?6~_bh=}s z!yOx)?bzsO$5ui|J2rX?(?;hyHaga^(W#D&4s~pFremWc9UGnK*yupVM&~&;I?l1t zX^xF%4I51wHkvbRG-cRm#<0^(&PJ|fqca*C9nsk6Jw;n_PV>~~igU)z zh2A_-%zl-1iJ(_;mtq(6$SW9MoSR)?E2>yfQ5wxVpN@0cc*N{GW76u)AhzsadjhW6fQ~h!tr*fi9Q%=hIJKbEm>nf zvmV5Lcc?hB6=sbyAHp>Fc}o^ug}dA2HrWf@FE+7SrZP(UzR9ePY0EDe}o?7HZ~5FGznZbG*8lH8yi3@~5Wwo!23= zPFtL%z>TDSLZ+Fpg(aD3i2Q|_X3rMZ%ANkDN%z^x+Pl-gGU+9tBb+|U=jbQ60oA{g zT5MZcBQq6|&rzyoHKkQ>PpY3MNwXa)N)yDGZLsRQ19!I_CLpm3L&cOMz{uIg>Y6zc z{i0cpceb%wrfG09t6!D{_;H)FIz+x^W&`gZIdS&1~p}^1CvdO|P>=Q!A1G zHpRihbxd*G0qYN?c+4BDn<-A@$ENs_H&{%FtUK<7_2-5`fPGN-zX{7^d>zo?OvKlO z@}{%<6U9TsY=KE+(wi*F?D0hQ6rJCPEhW7wcaNb;q( zSqD=;Nn0hk%XXGrU0Nzm6C1X`B(`z8bNnF5hEnp$b{1>ai{9dIB1@69gS9pDC32FK zw(Vdk?&RjuaBI6MHHF_h%*&nEN+xOZj?-}Tae#JGLC!m@iz!Xyj#Bz_*z}uCOdk;F zOw!oISv#To!n=gdCMN##m@Hb17_Edjt?7-{>?zf}@Gfg+sv&YJ7Pz^9w+Q_mO+)m4 zQa!cXNBv=m(RL^Eb5EEi1v-4dYKM=@&CbdnQiFt7^hxvX5w-#(b*Sex^)_rWLQGG4CqO*^>EQC2Qrb zY@VC4x#=!Hqrxx1M(*k^zDTOZS04qu`dF=sikBo4-hT8oea2f8Q+9yQK#>}`NN16B z`Ve?FzT4>RZuC)$m9o3-`hX>ydWl>ii|MzA)i9lmK76rOO1Ij>+L+QrUhk}wk4W7E zTZ%J7ST&IWZ#;UMZF@}>N$)}_e%iz8yQkbFQ^IWPBN7Z2<<8scEQ1f7`8W$sU*33A z76nG=U@?205)_z~n>%J)R-v;yJr(_SLjSvAuoyE}O82hJ6=v{y?&RH)9I+2}%4K_5 zb$8zT&LmNxd4;erp5#)3lb#{@P>EWi6yA4pG!p6CCz;(pboNCee1jr`&~ z_+IIx{D}^CAhE;FtQ)$Q=o3kX(#E-yk4bXIKGxiwd_t1JCz`mEzmVi7`&g9O#(2D? zpOJ=bw4Ze{rHTBtl!l(=CH7^oI*v*b^E;fdqQ$TKS-g9ib21H7(hJ|atm$k)JPFg! zOGQ}+oL!#C7i6NN2b?{U$QO|uEgFBs!p!9y9+>HuDHF$XZc`>}>nIqpuc3=Xi-RAr zShHY6zDYXP9Aplw67`PM-0L8VGz~(ZZuwi5v*@7HlZpI~l!oP7yt%HS&%6BVUZ9H7 zR^rZarM06>B=J-xoOp=!Fv~<_MI6}=Q#|--xT&2!5>stB)N-)+=a6&0CUSKt-S2Q! zvbR`yn6)xT&Iqw#FN~Z}LT~XeynTspeg-*;Lb(LWT%f~viS|cWLubM!A40+;Tt}`r z!s)=V5-bdPJ!6(kyiOBt>biq+516)^itc-}4E_u;MSyQtLL>}x+ z(!i{61JUmgq&JSTdS;X00h>Nbs=RfSrJCu9JVtc;ludD`j1?b$%JR$=A<1M97pK03 zk0sFcR=l(-;L@s>!!{(6BlaC*x$fCa7R^4ZnsL6^`5Bw)E;B_O`hpF_+pFR34 zIGf~7nIR%hupD>FEV29qo9#}SEBaw(7f!%0XOlm7PKH#x`EESC>gwkhuZa61<~|f} zx(2#uxJ2kD;c!SU14z&&E}Udz-6^G*ake|94C^%6ow7=_I>jcqQ&ywGfq3;b)SbLm z)H=;l%toW{{=6a^E$=iNX$lhgHSx`9W^<=(7L&eYbInF0nQgo zthHG)`i{|lS+jXxvs6b5}x+a^7 zNS_TCUA|@W+)1BPH+FPDk~)RW=gM1NkaZY@B+d*MAAQH-%~djecW+Z6Bqv-2E;=zb<0 zOco^GQdtd$65<9DH$tGpOAc{N%#8|>c8`R)gnZh z%hO>Wh9*z*XzDq~#KsdEEElj+47td;{AbJy%p7yKr zq=D#3F8OG@OUN8nA#QV%d+t}~xdqW%nRIC7X6{REE^;}%%xrB?`WF*wzY(?6E;^~8nUFu5g+$_4d+{JZn z4qe>WU0mA9;C{`;J?G$-G?1T9#9fDreZ|3UAU~;yTLl;QFBjLj2XJxKQO+tkm+vmF zr;AIg?h;(DyVxNvHZ3}F_3h$zb#a|*PZxKHi%Ux!Tqe4>Z@IWMx8r&QxFx1LopG^g zvcyTkl*j4B#qHbJ#inr;2YVO0zl%%b5e}3t zZoZ2vM;~$a4^|6)NxJn1i>qV)lH`$_H8wk!enKj(J~2C={)I(_emX-myTr2n&q5w> z?Mq*RPV;q!c>NNq6LubmIW6@6@_xR=;?&DW!4+6;9tAUy2IUyrdL>RwV@{FUV(em9-4Uj3Tp@dB1K%f!iK6$ z6P>QIp6VU=6wXz+svWF}Q}9%3iGXXYiyvMwD6Ki6IDZ`eJ|^y7fs?o5YjCmp4^_Mk zPq;Jm%Qe;*Z^8OpXT#vXp@<3BSs%5rCf>i!+9~zK?dxom8lZ{3H$ZD`P1x`muZd4@ zuvTy=`S=Fws@_#a=bLOW{F@W8_9hz%|K~*9yUE7EKRFR2Zm}L}m?pN|f= z0+B%9TMa6alu)G5cUQwCAp!~X`PE2Ch(ZGXo~TDlLJSh5?!Q3G|)UA(Aj03G}(w z5t5LB1O;;)EeTmjppU;qmr;RyX_v)8fapgsEDa3+ z*L_=p-`pM?xK!8HvMq2<(2@yLtY*uCYP;EHS!gxSvzFVd&6b6h(gl_|3#?{)g}K0P zFTtzfcD!S*u~}-&_4ZoxTuX&{uD!C}Y^j)MuBxpdB;Kzw+v_TFTWvuzTWwj*|AXwl ze_1%s3y$TBqpsp(3}O7ABL~K8m^}iuHuudnk6&o5T3BkWGu!9$KUiEh((P*VSnERT zf@-{H9%;4I)K*!m&DZjVkV$DnX3q*$R4q(vXkFZzYST48e3`-^fP(pKBkwYCIXsI6`c*vz&y zyf`6M7mimlw}hLmZFsfHmShXCCEHSLiQ{VL*xFThH$SAru3xTsf~C9?Ih$8uSx{eH zT5YZ?t+63@t>%I%du^pTZ~lDiTt%xQYt?*vRk@{NE>XOyvQ{BS+LF48+DXH6>P!09 z7LUrBIIXB}-qguO1viw;uk4pmQCTwjy4vc>!PPcPRcS?u7LnHdf69dXU)pqF;yxD> zM+heVWe;`pb&(f64-h@`FH@|qRHSTX|G(n)R$|IzWW+nj^MQ%~r7OQCG=9l&kqiAY zss%xi>k2_Kh#(nAkc<){NQOlaM5IEchai|RL=dk;7$Fh?-Koe!p8FF{$TKVQ%$5N- zA$bYJba4snkOiN4XTdun3nI|cy_5wykp+BfLr>nT$Pkes{IEjFh%w>3I4H(pF@yn= zfai5f<15m`z{npCb1qelQwFd$tyFjN-o@5#m?N}8)8v>+M;QMpCazn&mCS_rd zzI;(crVej+>ck(9m>VMv#VarUlqcOH7l^LLiP^zd*vt|M=er`y*>sR+>sbOHYb-EL zr4dEyj)_$<8;oy(UDY%!&UKsg;xG3~;BQ4;4NHCXUQANllfaln$91M>09yF>(KFya z0X?%m(AZ8Wv($n=I89_V@8-KqFZ04HLRkxN)G{&&pQ@s2=Sb7|+ABt|twP(xY#Vly zN~w{sX_CsYZD!TBR;e7X7L(5i70?1 zrU{9+B@`J&WW3!c-27|8t*kfWpXX#nrlMT0=jje-;tPyj$N2hD=^=yZp;;Qp_~XeB zF#I8^%t~3pim7uduZ#%hk=<{iCzahdMp^uH#M@~-cF@z;{I6YHxXAsIc!vE2yk{uDY>gdK6M@iOFfOwvCO?s$wWq^oNmjIs7Z=b0P{UtKS zIHJ4FEZaT=bADGckz9>r(roF(gdka4|*Q&J#p=Y z)ODn$r$~_Q(p38{MePC{Y$4YTxd)tl<&d1n>*;UTfD};22SbJc+Y>-@RO02tbPNe} zln8U74wY58bA2|a|ac-!GB4wkpS@%HiypIdyAB<{;IKFabj;;h1 zi{(ehC&$`wNs?mR65O?!C-AE5;MUgk%NGWa)R*TF~{ zMqi4uhXwLIh0CJ+wMXS=kIM&E9Z1=#D?_B66w(WY7T{%K7u&^V=;gCU63m9rQjGIS zGbN|!CXQ0PGyzx4z%G|E=%u0*W_nP=pdW9@Wsmt7L?~g9j0QFFa}&D4gJe)xISzHd zcqo=i|FJKs3@F#BAw{bq#xiy%QR z2$>RVyC~gDU`!XaLLgZ$`CCsn@Bi=Cw@uv{U^3`bQhCBTcK#4%(s?t*pyMCkxSin- z&K_aaC_f1MVak;_-ksT%#cSBCGP8LSKR7zc(Py>}SbrTwR$q(#`{{62Oj111N611q zJz@zAFpcxqC@z4%I4_+|78(V+=E8A2-WsooEwrXGn;&+QwWT8#r%kf-76t1f?l``C z{-};v)ZxmKT-NL-_nwlOY@Be4z7CBVEsRoP)<;J%OV@}QncrJ+-!xqN+>XlTTW4kS z_iP1ht4_>d121EKsTaZp^Qms~$_W}aNGSEEIdQx+IT+V(M`+a@zzzv})ucY4#3`$} zJ6~e&p5RsK&=db9DWYaHJMQD#1AKYSyCyAc%c3Fdyf4=Ab?s>A2*yC<*Y#tedZMRF zh6DVmx~?6u7+_K&PQkhYe1K0|l&py*B{BuJmx@&l4m0D6XC>}7SSxD0E4%|D_T0QQ zF!&uMq9u-b^-Z8T3FvRl0#mVG+f&nglq}|N{%sN~){DYw2?nlE?@5=@C<3RVc1O$N z8yUM*FLJ5@L3IM8OqZj1(bB|34fc_=kwO9%$*oK0ur~c=FPF`}11(wO4k!?AaHAW#>YK<`F_-&0~x;^@3GJ3xysd`9bA zY-Es#ZZmcmhGVER=5-{VDA3k6209PHV$wZ}%;oFa=JH~>n#~CkIpX5-P5f86fZY@% zDAj`UrfbRDcHbh#?ob9@fuN;Ypw(-}2bdl}75q~^(wWH~@fr02$E4h=8XW0vNfkPj&KtwPoB6RInd@pVBoBWiJvJUfVx$&p@j zCEa~b5F5*fNTTlnH=S%Lyf`9JYcZy#@X!XVc}Q zCqUQ37_7QdkXr6YYN{d5Ju+6u(t-t3XFj&4dcXd6t$vPIU+)iay&pJh?*xV# z60O#wO)VJ?4oMuhMNm zi8j9NeOEbc6~d8LFCM%DpdI_Ai>mukgstib<6GXlV0v1^#XAqRz;^FZpXLqk_ttGh zF;8|B<2e5QMh1u6qdkGJ0~#WKUz9bY3A?Jj2< zz)8Z;CCNs~Yf&Iy1mWEjQO_g?U$UN|snZzDul=eo3l8S?uZsLv0h#arDlu$LC~ipp zf$Laxa~FQ_s~8?}OdlGI(|~eQtQ3QfC9+3DMd|Y}!j%PAtP;CAt`g|F9ml>5G`-+P zdS(nF%`1X5YBf(Nv4Vaq@7Lodz`u{Z#Al=%-~|q+a>8Cl8@3AsPXEJBz00)nlxLhS zq`kh~XVTe8AzV$-WBkbJBsfN*bg!bQ&nbk;ynjR)x1HP1j8{8H7`*9hFz}SKNeq8z zuH8d!H+X6vwZG%pvxk@}Ajd~QUjzT{#~g+~H08X30x}G)DQDhK7EMzeM}7_nOl~{L z@Qn=r(E*}anu@)&YMj|(G}YFr{HEWU*i=Q^H?iA9FKvs(z!;e+zjtO)xBCk`!Rs#e z?);rs0Vg%{trvT;7L<__7mzBQmp2WB?&@aZ-6Wbe6GKfp+%9Sk!IQRm_Hs)p?o!@o z;5YS2?=KnXfe{Z!D`wSL%J4{QR%yjN>msqs?X~atHfl=x2oB`&6@Qr9zJ+vC2Nf~C zRDM0}WAp9ueE=4AyJ9qnx=k3ZEQiI0OO;#Xo;Hl|^*= z80qA*;X^mKi!LNVRBR4+7F@bwBbGlb|0@6n`={tGxmO_E5UK7iy7rak@NEMUE%AAq@=(I36!qUS;KD>*%q~bWV1Us(}hgi_qigVU?hT+Uq zs-e&RNcaM779*%BP%57=!XQm_P83XrWq#HVW3d3NRkA_b9qpo1nLOUmRgLHs{ ze(>#A!dWf2EQEh4&}pt$7t%o_oxxmbsj`$?YphkdUYjXSB}^ZnT@C@oF!6W@0Vt8z zCcq;wO&*pA$5}x5Wxu!|M%fpICwqD=aCG;AqMYBxGV=4F8G-@Ka#AMb=s!nfTsY0i zO2T)gYt8p7LS9g!M`2+UQbvK zY;?Gw`js+kdXCTC;`!8rHVGq{zz;B_o}Jq#!+~z@>2ds_Msu`Vc+R#fNlZrX|v)G4srirAB2*V0x6wh}+@5+^BaL{>E8SDet zLY)S(O`?O6P-+L~1LeqHcta8U6Gc}GHO>yN=;Xt9LWZ1m7lgA&jYf=b$G7YztT-kWN`Qcq605vrZZ%U}a&_1}0Hcivf==&$b0 zL`1k2xUjGbsE|R3LpSH65rLX+F1rVw0Mn>TsaND9epH0~_`Pr)8x7)QD>sWu_s<9{Us=Wc&y<9)V%BJDBIP-^tpbJ-`$f z*^v~R?t`h&U54j8Ra{)8oVyy9GW^X8VAenB3-74BdcT+zjX(k%T<7Es+Cx(ymM>+TKD!1rLf%GhxT zVi3y|L#WfjRYrNhbC|dID;RVojggFfMZxp@b8zlY2*iqwGH}S&$5XFDdF6{LgGLJp zE(Wnu7c7xrRxKDMFKckYk_fg~3%28Vc%7|w!BPm;rUj!cX4_n_9t3+zz?7**)lE%` z<}|sX5Ypu39H*L)f8a9rrmJgD>bggCRk$_U_`h>&B=z&*mhe(Ci4feP5BH=*LM4WI zpJ~Y}c0iUlCq+ztc5_n97j8l&y#&YbtUan@w7b3x53}$nB9yvgLol%f50r1V!9e-9 zFfcG(ln8xL8d(cbw3I3*fGcFnW00t|CryiPGc9R8XC8DnMLzf#xIQ}Q5q8N9E_#F1 zhsjN^LWTbu@_sq!HL&@AFqBW5S@PP~FglY_Mf@&pg4<+zMJr5~N9=(w*}N#hNMj}$ zqe4W!RJ;y%YVH*~!{32ndfW$c7QYKCfHer0sV}CB|g<31>eV`WX>Ug}htnI-#34)s#(% zLIK@GkCVN5CvMkAseBc@TPSQHl|O^O2l$-aG%uBhz6DF=%rDW4I{Dy9&pL&r?@wRi z9t6W<8k%N;vPrq$y_8!hhS5?^xUfnn=XC&5C~i-XuQ(3NjJ_Y26{dqA%iiNK9&$+! zWs}7?z@#RLV9Wpow&(;5f-xRgm=_%;V*cy|d-0T0w(qaQ?Ce8!pqSKHMYvlIR(2(jtyS)zt*U;Y`zEoY~3T&Pt zUcTiFY{rz5Q_sRsd@1y{`EB{Zv#`kYwuV2`zK0?BPUwqX`#mJEw_P3@{%0PlBM-&P zE6yYR`u+f)!7rEXrhJ#1%6^3IUB@}J-rLS0(Q=n_kfjMHs<0G)_&?7< zt0r7X&k^th*BbySp*Y@quO~zv8o+YmuKyFi$Pb-Ig5Q50rbD4TOV2KgH}oGckec%N zU*K^zGg_Ht$NP`!9P%q}4|IO6i`WClO>pc~CdSl0MG362E~?S~Jhre{5#II?o9dss zxk~Ex1U8u687-EBW$qA(b~mjv z5#wwMXGa2-&@t1@R&mf|scjCbz+K4FdDZm)rW6VB(na*W^cywNcqAejv9VR#Ds4M# z&)H7ej!P5qltC({W;8u7pr!}D+)ByRd_jMHMokp`89~ivYM!8`YzehCYQ~a;>#6yf z#`=+(B3z}ULTa9%2aiz`fcuhCCu;tIUt&nlQ`4Ew$_%2xQ#2`k(#H3`o( z3a>Q^kKzATKtDAKM>Pp2H3Y?CmwQ5e}I3~Um{H44L;YHd+;Bo=SGN^k;y1R(|?AtWTk7Ta;#QH2fk zUquu)$xj2giPI%ZYaK<70I8)}IX zf(=xYDs0$CSAq?ctO^@w?N`|FEL{;B#7tD%96sM}uc@%tSZCpZU3II|8O?43CdbeY zKD|!p1IPEwamcqrC#i2 zWoFq^+iA*46OGs6mc8`fqPCconU-mr=92G!&i&1Am>FiMr=O2^X72BM_H)nOe(c?9 z{NQDyZn1t1)a#}O_k4Rod8MtmsLWPWT2XGBQdC@AQc+Rx-2PR#rZ@WNLZ& zUAFQv+pzNT>7^yMLFJ`IQ~BQTu6$N#`uHh#q}lGVm&_@#&37@HS#(#4t;kkfK5M?M zsBD^TPGy;G##~~6h&i_Md&)BE?7@@kQtX+v;a<|~9;jPVSA`F3_WK0<0&P?8|DP4& zKbeAiA?K98Yl(-@>^D^W7Elp>6#DI z%gfTIOCP2elMm~P?9r3!>}@93wXCg5gAOIX*VkKbu|HO6kGF@|?->c?s>-QoZ}zo> z!NcEtKyr5oZHXozLvY-G1bgTW8=izOr?3r2S`4t&ebHn^Jm&a`hHs${lTHq6Ud= z?=+jBRVx?&X!+=|w)>b3_`zX0`WV^qN`4Z5Cng&e%(P~iGYH?LQwK+GyH^4F@gLhy zWH$hh+Mi||Mi86Qk5_g0i1h1JCn9X0d-Djym zS`RlUvq8Mo7ow3yYGmjrHR7{}TKT^c-)9?CRx6Sewnb&trDGv%;7dDl%QhcY8(ggL zlZ-QTlB~p%FlObo$$cWc!q$N|X2$ai$qV6g>A@q&%)^5zj@LSEXFNaI%oFyavJ2ChZGPy`6ezrf#xWn74u0eO=c#@TpWvpNedb@XWYqM|xU5 zu(QBR)3>t>CS&9hlgcM$?6ssKBUPhO_JmOwo#DJ^w*job3U!4umA}+2lch4%;xu9o zs>SJ<_j_BMf)-C^#f)cJGtE=n%w-aHb4vZMlAv z!Z2(8Tzh$0fW*j_++;*oWbfefx|#WeoKf&N-<;ElttWM2`42f=OzTJ`o3fU1*c>me z>cGSY_lRN7F>yyjUc^x8W|YVg&x%>ni(71-l}!hpAbKpE8wlC2Q5OB5%02W4rNldE>w= z6RM@pYl%4j{jeGt@@)!%V2ynTX{Y*5tbWfVqBrLj7ZOf6FKRZ*K^)HX>_ZpO~likA`dRhoi=qQAp0)~+Maa=V&gr}5M!=1do?3!v(rQ{@oZc#c=MAd;q z5*q$qGTdFBWW<@@@z^~}fi0JIY6V~!Mno2XWFA?W9N)AySLlgv@~odff<58o(`7ti z!6B*S&yczRTRY`uaq{O!p zo9apex4~hy85Oo!b4n^o%I0Qx*{v3b`RL#Kq<559$8Y!6Kno*b<>E}R1{?f4EYje) z)(Yk~-*+nuHmHfU5QPL8D6wK)wV@SqaTRi{;?{2CeJi#(KE8h~uq*==TSFDnrAs=k z(zfCUA4mwCk0j`dYE1}_TsD=BH1MpE3D+_?E|RR8CnSluPcQpJnkqK`@cS+a0f!0A zX|D&V>zsuT7MOje*CIK+o`0|hn}_OJGgB+wK9=j7rRb?ZbJLRQAA_wc-1w$hVe!hr zY>ih;R`5$JH^K`3GjGqgty;r28RQ~+@#<3SJhOUdl#_zev;$OD@Etry5)`q$DtKvK z26i~=Wf>;38`O>V$6KQ zrX;HtLJu*H&?o0HmKQAN`&vX^9}s!wsnJ2!n}VB zccY#i3+9Vo{tr7DjLEx}e*O5$5z7VS;+eVF{b~IW>oGU;rg72j)xo$0%G#E$tv?aF zen&iVQVZf5RQ)qzM~NHaSOXpXj6GE$chU{zFF!w&v)3ni<)V_oOJAP|nV!PZjG|~K zB=M*6jRt{|QjAm;wUtCCqm(OG5|g&B0&4+w_{>hPzL5!Vt0&I_BUPhR!&>BbLqL9) zzL)~mist+{77AGC$*;o5zdttDFBa1phd(+`TWMDCCwC;U3Zq)*A4d(!r3PBP?!;{k zE#w}#AW;%TdE_4TeikfCtb0*>*d0o*O~5-1Nukz8KUQ7bQwV!Kt!gy#<$H4jU=#Su zJHvSL-uCzz66P^Ye&)ks`o7))SlIaGeJ1|pzAQN7Lo;;$1O8|nU+%vi;J-fLkq2&O zjjB7t)}bF7)Rc&Ie05-?K5z|n^!>l@z?x)gmM*;K$7#3$&f4b=SrT9S@or4PqEC7l z)}w@YlV=KcKo*$#G6na2vJ~J(zUqq}h7AZD9tggXm0%cbOJ5x6WMP-gYheneANKj&%o)BNPIN~=F8CG`%1Y8ByW z6IBFwTDoWx%6~GT{7J_b0DOsx=CY#_q^+Dgm|9*rljqy2z7FAMzsuwOzb)jU-#*Iz zz~VGA;nr(7GI+j;WuVo9^+a!Aks)$st4DY!kNT!*qA=pG78X}TpsDOQ`&}BaE+N;t zx^hTfa)^5^_sJ~{vYsWnS67FFTV7pJ#oisvEvK^B&R{;|)EJA;`ij@K;~$=C&3BwK z8pej;X7n|_?^L2;Czcfa`tzv)Y$6(h>#p(mP%XD|GJ4bRWTcLb>eJuoth3zsrul_t z{&^vurw@dZn~$SnN+`tgou_y5iQPkC7C(5dM_2=DUn&te-&lS=)WTMjU--3vjy8v1 zOk?Y%2(1j`so!sjc=m@3^}CRvpt!o%Hgzg{8q+-c_t6@QcO?rg=^I1%$=?&95qac7 zLm+y`obw+sjlmCI3{Hmd=P&kvlhUfUQHgIftCB7ivA>>0$Io;mUM&YlRg65vDkMc!ljyW$g=mZJ9 zd}Ta}N11M94A1&CCR*MrDNlMlPzH*-bkG?Fqb6~=DasanRvT0?cUoO-Ft+J)O75&H zS(Drfm!|lS?qcjQ_`m&Rc`)QUlkHE6$}`yz>sDf5Lb7S)GmB>6q3@_rI-pHwJD3=u zhxY9}4rzCzk)*avssUmO1DjZUCW$8-FGOyuJy`?^!W`yubn_Jji(Eu7B zA~#o}+6Y~Imz-~kMkCy0*3M>K=L+&jQw%V{SlETmN#kSs>diacxgf{?e&C{Zt z73ka=1JQcxOh2}L5eEZVrI)rd#jWvR_lI_V7!NqBJ?I1PZiAow!G&bL)(8DkA|${} z>58yJXu=HC3R5N48JPqofLPJ4BW#2av9lw5$F_xC>je4{vVL9qEZt+}OuhB0zyM1C z=dey-1olaoJYe|(@rS%(^`F0p6;afOHJ`Xi@(i`#y=D&(t#O^g{#}MV<_i}%cUYT11_N}4c(v+l0{KBu#LNhb<=TVX+v#V8qf#3 z!31Ev!==|wAVJS?&q*dnCHFd{=qujJfI;GT7CgpoRtZlc;b=*y4UL@emJ2S4vV}Ky zH|c!k@45TFY`CJgR{3%Fs$3W-QnR4xn7k@nj2;Iue$hSh@Z>>w1*gjSOddFxr5W=_ zg*_j-M|jPc&x_6ZkilLIr>n^zoHE6Qd`Q;rC%2GW0?mcaa5)$1cHkr_>hqyPG+iZl z%!sGZ9aUmiUuezH1iGOUQ?fwE=1XU57fAu~@rHgdr;YUsKMwlfRv5ufNRzc{{e{az z{@@G7L7w;|AL99xg=P0@D>w>c*knNHDYzKD20kuJ<>nKV>4EMMmn#`2n#<)I5!KPM8Gi z%z?L)PSZ>n0Z>44(>Tt2`ZGvc(DooJHodFgx4&DEg{x- z(GZ_Q7D17R1H{K2n0F(b?=6Ew<`2K=QZ+C*=7XnUn;LcjRcKUw73-Y-5QOVm@cV-g z!xpe!4WJP-M0##42qxEnY2x@wNDp(rcB5R4P-A`(WnXg17DHCUCwjSi5sS7%IqMoJ ztJ!75bdL0_X33H6$Tls6MdL_lD;^RMB~t2eDKSW;{u8PDNop-GJgCLJJD`$HRFVHh zV}Tw} zq4g50RpaDHs>Wi{qmXGzLMI>~UIIMVCFHM55waw^cUTuxA5;Bzo_`b`39=p{a_@^; zvHl4d&yLCvYSrOTq{vtYiy3~d`W14*gGs3mRR701e_n_A7Sj=bYH?7nrPWoY8pS_V z%Of5|%P)FaeqLomN(tBi+gWQf`O{bsNTC~wjCMr>$` zaV5bozDZDEl5rB54?&W9%X1-uvd7Z=7D$X*2pL}c92%F6J~`xBPj^2DFBq-$=H@xH z%mKsMHnV3LAebxzv&6v}xDLvC4Q^xgW|>eTVH4<$FG>WiLHEA~OIp|?+`bjxjYM+OGVk~7@}P9$(~ zVDOY(u$e7#fjbg-p#;10rd1T>&EHJLE9$suTJx)}I&78&$;}fFU2!>OYo3eh_P0O= z=3p~kvin7qm%F%mCgzq#IKixMVkCTv+lF`GY4&y$C8k!~-i#6p-h~?(eo}EWbRy%O z-o_7=gC_8u60JK1$_d=F22<}5by@5-`LocLj|pkBydzXSC$Q{>iM}TS`$g4mu=~DS zHh?aygmn+D$iggiNN6@$G~;OxT96{P?}2YvdkZD5r684T)F5)-_w8O-*22lXv+6%E z(11s3&c=^nC9s|r&+SjPc<@umvSzzwx=s=fFtPtr$YeLDXxA$x+0LxPum)JRMV(F3 zNSSU(D-|&v1*L_-|G;PPQV=V($YtlKV=#}+wa^8z_~RH(O!pHP*NU@L^51{ochNpD39`f zGqE5AWcsu}4WrpPnLbfx+@X}|ldU55ord1x(eH7lUHl8QSKo5H>W#eKIqV0h1#6^L z%fF^mr57$jA6%Wy{sp?o`&!pqAdzDH8Mr6W4@J|8qBbTqRTQ0vXrcQFQgN5joXNDG zFmWQq%3q;JR8MlArWvMHh-iHlrm_K6I>^ZT-*?{yxhg|?ztnl+EW|K2)+$pl<`)UuY8f}yD&NY)$D~_uzKhlDp;mG1S6GV~Ar|}w{o#RTMlBKN zeuH_|C4PLl@OS77!VksS-yt5BsBY-z>jvj7=kchJy?o7n7|^7=^TP`e1=d}Gl-uoA zPRsFKRx#ruWcnqMxpBlFNx~(l^GhOK@PnHq-jze19IFCrX+A-@4V!Etxmh z|0~r61ulv7YP-k}caVIIA&o8PVFNqNK)Gfg7O5QREpcaj2*V}u0_n)Og6Y1p zJYJ#^Uxl)KaWs_O2-Q;bHM~DnFhdFui^JGNvro;NEPe=M(|u;zf^0E0oIM47L{J1P zG2eohM^$yoR&r!mg)+`LFM<^@_D!_&Gc)@#$ViuW_?2H$V!*#(vrUhw=#;s{9`{oSK!?yiLtp)J(<`CZ&*?SZdl)^CvZz zsCkk2KSzxLYqJtWO(8N~q})a_w&CftvXz=S_|lS6PR%=X$=E0x`ni*uZ>af-8hINj z?;*#ay-EQ!fH(fiRidaTRxeR=6&GB}WomM8r>SI7bDE@|q-Mn;YL`>*(iW*i_b<%8F)|%$+~0q=No3O8U84`me_RZjHU7+P<+`Iu|S|Ph@ zq|MdR-Wq9ZjkL2`+E}BkK+CG7X*JTU8fj9sG^eK0ZmC*?f7=yjzfKMPbr|~I7<$FN z!Tz`!_dWJM?7yf%&u|BQxjX3F>6;At5&9;BZgmHp{$xW9I!*3s(CIQsjrmymwnzq@ zZk^Sj)2s1n(CJM+HRx}+gML)@QGn^?CpGBun+*CN)F*>Zx6x|Q>B>nBdRL0P3_7hb z)tE1}bjGhT=rqvOpwkqs23?`ZQ_z)MXM7A>O~-om?O10RAsXAWOkrxz5{$!JQ)$N& wzRdQ_4t5n#LV&EesrancP=SAUR$NkN?^vrVol#a&H*zIykcW%N4lM8g0blZpw*UYD diff --git a/docs/build/doctrees/feature_builder.doctree b/docs/build/doctrees/feature_builder.doctree index a9545918a84df408109763a6ab0f7784fe637b5d..3435da79295e01c5ae7893c9c5cf99a4e18516e1 100644 GIT binary patch literal 92913 zcmeHw3z!^7b*^MdD`_R`<@XD>*Vr1tYFBnw=S@ zdnBzfiAgZFp$P#GZxb5=1W0^INDRa#A>Wr=APL-?CxJ_nn>buT9v_g9Kynkv{ZBo* zs$VrVJ-f2}1-=h?wz}%nsZ(|SQ>PxM?pycf=d4=2ivAaE4Z2>leQc)IXtX;GHyA`4 z8l8H7(QSu=hX=b}HF)Kq5^e0&js~56ukH?_Rmf5Inyp69Z4d6o$1RjUY_@_KL0}@R z^%h)J+*=o&Iy2)`=iOS^@43~vK1#d2y#sIk-GgYd7KXj%Tt7tJRM(njBLLlKeZ5r+ z0wm)1x^``m|Ju;#chw(rwffc_P!W_^d%Js#WFBW+mCktofc2*5c+dAP@YZ-!`@Qq` z_vdQfHpt!E0V=2B|EJ^sXX5{7-#zGi&+&F4`^7xFccFLwO>4pXs%Txa-Efa->~YQu zDMjlc>RyxeVI^AItu=dKlsDi?CncgmbUOdCJN?0%*dGpR#MYIHE#3<6Dn3@F5G`4m z2+)5JVzlc9K02@EgVU+7;pa5lY3_CnqUWUenn{)&nAltut%a7=Goq_Ns$1wwHE3e6 zlA>sN4u1QjRjZPKdd(9_c}k`t+gAqV5Z*bxij-UjP#j(wXk*r{hD@;V3>7! z)kd?&ek|>Eg0SaY?d+VHm7kD#cIULy>4!vezS)A3)&e)q$v>oWbZenkt$Vew+H#M$ zEtz?Lr;SQ=QY>R1s$`Y1-f17n%UJIRVP{c-NU+ywHG>e%xa;m|r`E2umhN%EIkcH((pBG;&)hE?5gkgg28Ufy$c^sUCKhlJWq4_giS!5w|KcT`d}Yv>5{Lt6?oTER))3RM@LE+eB;Fcmij< zhp7~BzcY^k*lbfz?3wv*(@xJ_aPg@Yx>Y{9a>TxfQ5Ju$&iBx*-JaX!pz1b~{j`e# z9I3}vrXIC+yA!fL)AS>{^scKe3;}?9ot;c^cfMfSxk{>2HR#sr7|n4OXXguE0ElB) zyC+)5N(>Y{dOAGnddUgt^{#d}{_ctJOHt_Q6p{cNtv))arBSvEIP>~*ZZT?YJhs@{ z%i00^3u!@}j<^h==TUZ!*B8C6w8;v3^^6%y!(4Z1FIhGKd3(X>%%_nt1B2(^w3=Cq z&Aj6mGsYJ9nzC6m2k zoS9VS>^jRLT+-+q!&G??Z9-Yh=jzS*W_|Ebv=IhRI9ah< zDV-{^!b^Mk%wa#-k*`6*f0yy5KAjPn==)+*FAdYLg5WPfwok;et;qTMu&KNl*Q!^x zrAx}b&whxzz&`^^1cqM7ZJK`y3W4d*#!TlAVE-aB@h@cLh7l}@4;#e(WoF{J<5&_` zLR*8G4wuu{WozOw%f2a5U2m?iV8D9cRio9X1)0Q9WmOo4q`!_zWJjTY4btrfqHOa} zfmY4!GYWK7v^@s7PM2JRPEUh@X!X@{FyfaIX~$S)w7Qc4Ie(Fg*pHGQH`b7kc2Z&+ zqlsplEhXvG*|bY78@4U;LACRzja<+acD~kch1DaqR^LswIXWfice|ZlSPd3yz3}Dz z4lSZR1T^v^T@+=oCgH*7Ee5c*RW#(^ru+OpuH51Rr z7(slfO8mB&c)m&q;-xU=^X3YVFUI^K>w=_bYwoR~0{w=$eI|kWZIqQ5T?8oKHPZL* z!RNHmk%(eDCN{(6GFVJw6JD=3VZ%>AJUMp3J|Dkl|ea2eK zU3Up#k31iNQTVcqlM*2n!v2DVXv5Eo=5lyhikUhp)%3ug* zVRm0(kg+6taPbr_IFk;Xx1|3J>2f6VD&bg1CYQoWR0HCEI(* zuB-BoN?0eYH5%bk0Kw}hv$FbK)(ch$VJp*f%?&ik)CwVafOgzMT!3rj9W%~2x2AX7Q1rtvg=^J6fwh6yw ztfBxWIPoM*thh;=Me+#ddyYR}&p+fx7p zUqK-oAoy1^@q8c<#D@aG#5$w#&L6abxCR7tYLiPRXTHEbDq)>zuCg2uusX`j7fuB? zmOHVwGQHH?K$A?ZfZzv>^o>AZ+l2kbDhhyr6HfsFJJT8~4*yGyg_jxYDFXzYi84U2 zJ8_^mb%Z$ajSd@UAmWrn7G7MoJNKKCLf+7_RXBTPP^BU-AEW?9CdYRYGJvv0W=Ud6I$1S))r8TO=O5Jg z56H>}Mz)xV=fj8~J`_gIH51Pt^@4aQ7@09wczj{xd0@tJ3SukJ7n$2<5~vl7ywphF z2qU&lXc(&~fDukS4I@&KlDdW^j2%0(pOilJj2x7K5zby27&+H;VJQP0o3z{#G81X4 zk*_m0vS9A<01DZF#@o%r^Fc!p9|{^jZzi5U#s%?Gpz&+w3Xd;nJi)raYVKhx&_6P_ z&m>SQ(D*AOeIsbtHsR~WDhfb@6HkK1#+~vupwu5NMQP7>jP;d)2+m9yh`2Pqjc9#q zF#{YYCuqo~r&3k(PhVeR#<2s1Y{28WX5#taA&3tJk4w$O^T)a%uE66o96xt5H$#O~ zzb;QZ7M)1nXXfGf;>i#4UKuL5gJ!1l1t*AWHxBNVV{7%j+9txhnRtGe+j1V7i5of3 z_9a#XaUEFW{U^=jOZBFxq|CZjR^)fZBEL&x`z>a+jUvxVC3WZGy=LO2WK!B&&q`!E zmdLawk&m01HcDiu`h3bve8fSR689gQi9gfgj`ssr>l=q(H8X7zcgjlUJGizM;XllL zeXEV# z;>&lZsM$*#gMqQH-+|eZ%p{waPF5{^p|OPp9@3R4)St5&7&jZ~8wZA{CDC_lDe{DD z75_uE4%; zNc=krS)%&M8%vveQA+~V*O~WG&oS3l0@pbcW%_S>CVo+--!^GkWPc^nR6kvAY*|4+ z?Li^Se!A93->AN#mQniYfVs93{lu9l(@z&XG`6^) z|6JC8!;SG#Gx2<5EQk*^#`l|v=Nk?|Tp436az?>lq-ys?flXuugLg9bz6OJ;y!M>Zm*Y-ipl)$E@zHoE{QUV%b3K=FDr@qC~V z#D@aKJI%!N$F(4?fMV?^=WZW2S6K=wI0I#{;)ARgtmY23GX1off!HZc$nMoj|49F8tW+oE}RK#a4~0$&O+qvuvw+haMd^tDgMNjR|?GL{dYul z6w#VxxM7XrkJKmzKOR9qL{L19Kmmd~b3Wp>4-&D9qlv<>lq`;*HxX@^@3&ekn5p+z zG>LZ!>cmbM4E%SK1Rs0N0M8y!s>nmU9rC6)PvG%xiem+^LHte@y$=@1*3#_-=|X5B-I&D6tG~WJfbKAtB=crWBUcJ=SeC>rIRzmf>iv*G@(#W&Ns! zgG9FzX&Lxbih%n0Yu?m}7bzTKq`o%=K_`j-0!e(z|1B=?DD5H#kUS~%Hg&d1L&?@aeC`ptgFXMJUAysnbe30n?N7O}EwH)=J$XQezYpX*Tu)L0{q9Ht{SV6R`2R-#nPTtW(8N1#z+9)Xl;IMeH_gH5 zx_A&J8H!)EVk3R2!d5M2iYLG;@@3d@r_ybx*IafvyLUU+I6R28qqbDYI`aoS7<}n? zP;W}F2o&xC&V_kwnE-Qz($7Pjt(24>Tq5boXjg;OrYz9NrxN%pnq|&N-cT&M7Rbe+K>| z=L3A)B()3=z><~arW^@ z&9LYlXDa!)(iETa`i{m>l#RVElq>r|NiLuU+P>c93nl9?ab%Q?l66{XCG&qkXP2D^ z6&$9{hCY}gRIC-60^QG;D$c4akbg5WGmS{ig9{YswaD)OF#dVazm~t#Ne-B&?|YY~!08&T)TM>ynw*l+)#aUftX_)nt<;4a zIfsn1GvDbkJ>hvBdQ2>shW<3`(4uCmMH++Yb%V5|hWDd(#}iS?N+beC!-ZDSBSSPJ z4!xf1$~kCK&v-R6`3jciR~mwBsB)!XpQKSTs)9YmWSvnkO4ezWRrqNtI0VXr+=LAJQYEtE6BqH}1C5 z&I3skMvwM6m3~M|ChfYrYd7=mM8tom9vop>%RFUf;G~Aa##L_j;6RfH%if&g8r{J& zdc9_Y+ed~Aq{cJi<+h~J%f{hVPY6o&H0Dv7y6NPkb`_6wlB+O<>rp6YzDdc;qNz@b zkeMklmpqR#Rh)GkO`QVmA(|S?B%!Gpk>qGHsBh8hSZmu2D2czreJ9P8I zLffm5(}lW8S@4m+HTeu{ree2PGqpUb1MVD234~_e#yTKlLn(P#G_#c=RIF~A4Q(=} zinETRnQhP>qM5Nw5}KJ2NseabSJO-ZG#-#63117s(p8v+MlF9ux#A2VYv2Oo3teC!&o ziO)K%SACdnl@-Q*b-6M2V2vIG1C}n`<6^y_hmELi9qRyusg?Owrxxx?<1Nq3@QoF4 z4qg<)D|VG=e><@nfIl#)#K{u?Y`un`tf*VV+tl!C@aX*l7WV``>vj&i@k@lsiybVg zk(nXrj|;V~d>%r&&+b%y!3U zgP-u4t?8o#Ua7<~<{~YQ0MD`f-w)`?b4Cn1d~8cCaKq%1KZ{D73-&p2z6IRpd{M)u zF_P*Fz(2%PKLhxbyi9<c?ti3a1UF(ouGe>`VJ%y&S{LU#9d_Oo(W;y&TF4KkW<_kfz?tLbH=tcXv7kxk z>uOG~a}+;l|IZ=2N@c0anW@Cq9=nvDYfpy+%-^;(Y3quu4#`H?&CMv3voAo&BiK!K zWd@EC`$P5aMJZBdw#3fB6l1G6>o|6ECuk2r2riYR-7Ey)tIIS{$lYi;72X;Ecz>DN zZ(2d|9rx~-tu#H2yVRQ_8 zM4#kWd5~+iwwnU9Yv7giXl~zg;dcZ$>MAGtK)C*5o1bY&Egc1J3+IM#grO!*?`mgq zog4Qh-GZqECy4Gpm5XV)QT)Yl&;6!Ee*Z`#U*O%Vn8-7J0wvqyo#9B(J5q#-Axv8q zdMjh9IO{lQ_XubYK|3xJOSJn)nFb1}kB@f0Ri^geTtV^v4_oo3(JnLMa?ma(&(g|k zE@7so*;VK+;BQ9r71MlKf!&V}>4nk3?oBe#_zL5koWx}yPS!7Dpyxwe`f&k)Zs}wN zZ2xbhK`wypTTHweV58(^0k*B%l7x!UN&~jdD6~?J-geL)0&H9+mcX{NOaq0~#|O46 z%GCaSD=6N*w&G0#TV}-N09#I;a9Mz@NL7JpX=P1eTAC#*O#9}tW7+v$Re`p28`(a!0rr|3y;&R|CCy%!*@Rh5Wz%G%Vf~+(fR*>Zl z5&G!Uum@D|UpSA)8MNZM^I)%p@it$LB zd3}p9Rh)Gk==yii9s*rlCYI2(eS1<;#awF*6jC1_x~9t1em)AV)Wr6=plv1IG<0P~ zTn=>QO$XD9 z!8A?*w1Zu^f7hnN1M{6ew(&dsz`y})>0@<{0w>`9dfnaYcwyKL_Rh}oyR$RhCEEF) z>GT$68=ZPE8|R#@b(=C%*r_6yOYNEQ!bScHZ6$erA z)7Y9BaXHwUljoDg*t%@U@$`LfTMQ6cVkOW+)89<%5CA7e5B(1MzGZ_Pbi(owQ!~6@ zw;quZ1+VG%ngjonG$65M`V^IQ{InpfEZ40>W3Cu8Mz>sRVYw1-I1D*E9B)|TurRiJ z5OM+s$k+}KZE9m<2Pe;Pa!h<(!X~x83OwUro2}hx?`DUDaj}&){Bb0VaX?$%i0LAa zxE*$v;)pWrrpjQ=@B$~=0+&iOwwwu-ZkW1PMP+Cz*Jmx`rv z+Potvt75K6?xKN0?&BM$^UBnIHVT>acpUMb5877ZO&h1on9DIvIeEUKju@Zt;E>vs zO2PwN3ll&n^iK=H3c9~AM59KB?hl@{YE{lF8|I@&08qr=a#T6zC{7Q<^^mCMu#*l> zrQHb~zmE$etxo4KZR_)gA=Ig(8~05+bNvvI9pEfdh#&>{$E$U_ZX3Wn=i&@7ZZS{p zzvcGp_ok0J6O^;_z_1yeqeQ)fNMaT7_Jm|*7kCStI%12_aRCur4DcSh$M`)Ketc>- zI~wg=zu0ZUF{(KWbY!X$xSHFt&)> zx5xt)UJZSKW8x4e)h{mFDI+L@Nst&3^N8m}&U9K2=<#Nj7$OQ2EN63Ht;#V65n z-+>WUHusxS!P`edU14hvFx1W1T1p1N@DwekP zRb?6|`z>9oULDZEG`QF2~m9q<0@T&{|U?hWIU~Ck92QsO_RL( zFnU3Sn!jr;DCM?(7G-E|@)Wqw72Cldg$wyT!+a& z(9JTjI?m3+Pf^uVP9<-?q87$kD7oUJ&*il-2o<9iYcna0C7vyJtjJ!H1QrD8eTIIm0th1|!VZOoLZ{rM{>-aWSBP0uzm zV=ia5k(1{w@oZzI6dC?FsWLq8QIuIJW}0a$MEu)jN5oI39^cCeJIn6+V*9Qp!_U$N z+B^jUW60JM@n_kES_%S4F~AxKv5mRX5;o%Mods+vBAA1W$PjP;F_ha6e~){aY&n&D zcNumpNr?rnr6pTzEyDS1bl~PvZuc1OG3PFVW*!g}P?(q5Vso!{BELS=8NBYEQ*OQdwetD#^E>!YyCb^7CQnI~Dsu%P2MC`X>>QgB~ z#agA!Uw(@*Rh)Gk1^f(X4^hBaCJ6=1h$Ke=bMn+ye$Xgsr|Y*;o(~O?_UOv9lzmao z>_jk&rV2ScgftJ#j&~l~!j#oo^ajNew`6!cLXS#R>;&XJVkZjY1gC=b5S8Lmv2+QZSEhkN?&G@zSC*;$ ziWL;^)wbeIy9AjrmxEY2d2Wqeg5^_7rBvw(tsv@K%MDQn@5X}G(1+{Hpe2e20<9>r z5AAZn>UVpcx*M<%-n5N{H*2usLEAaBs)Eya-DX&8HSghDIkZpK?YHY;pa0!+7ZENP zQPKE@8f}l!d_zWSn{&O|5n4N;DaDbQJu{cgT*mgEL=YjqVTa|GHuj=qAsip%+!BL` zON>1<+7)7i`|TW#c{K7H_h0vtJN8|F+Ypwmmt!m*02IJ%ky8z+-bflNaJtPjHiOfY zyi7R#K#G(VPQRM5Rh)I4sn0{8Jp`w@R4j4&(J~DbavvY3f2mCEkFTJ3KVmE1G)`y6 zTn2#cZmdtfB+Garl;SfmAMWq%G288(?IvYG03daS_lw^#(b-^{bpJ4?eJ ze)~3mlIfpWR{vk|AGs4Ho>%g}qoqabZ*^H18@cHe|E*;8FC(d#coOQLs8IYQlz%cB zkmMur!py;S7{#~4zNH?aqgAW+PI`2Xn1q2_3OyLFD{({w=Q3(IZ-J$)qdhzn#m%E! z3Tw#4Gqz^N-qw((N^q@{9;m~T8-*H&`+#F0Y=*;5w_rm8uec#ZDhMNff3LHEXcsWq zIQT-ZLW!`bIC0`kU4sLR`>+~!!IUJ8*n5jjgm#kKL5ys(jVOIM*1}J7kPYWgN`YgT za2LmC;Ml}`bKl?Fb8wSEAUL~wLW%@yys=Pdp;w&aSr)OV;W%+x(l!@cNzzC54x;0) zK_QdlLs^BA(a2q9CELW6%wezah`CK7O||aAky8b;z{ja*IwB{e6i=R?*)iypj6bjOzcy@mId*Cm(t9u1dn6x9ydKinjyL zuBIOHiq>N*px1PR0Uo&Z?u@Rc-BBKNy(*ETvdgK6-|~UfnG|wjdhc}_y9Uvv=8Q8r z#UQH%M(@8e+sDt_4FL2@^Sn=K!mp&zz8U8kH?l(0| zj~a(*#rvT5p~S1S-UHr))WAp3z#uLgJvw^_9+n7ZkGWodcApy@4m;i1+uhotbAWqu z&doUY2op35^RrmRd}|S}19w`%Y|yJ`($b>G3%_)Uibqny(s26waN!N;F;~Q2`*19? zlPV&RWYK_j&fjl>TOBIA?`lu^uE7h$ zcySpghUA01oP*>me-GKc^7kh2W8y+c#{U`OyFfTf+5I-M@pq^FcS6biNAOQ#O!&{k`Dm)*CVRs$sj5CN=s^jq3nZFUfz8mu@cd)4lAlhd4na z1QkD*yCS3&MEs^`q=aOPiNn;h0}#-Izpi>P(OXZljfZ(!S)x5<-U&FUgT6}jf)>2l z(36wY2^a?VCApu`EvKND`AyClx9+56;ee zCr;;(I09P0%|IcO#UXJ@H-q)AS@Ob{|2oS$+?P+d6hqvMky1J4Dm2L*hIzoS&vkEsu!oD1(=0fj>vTD{ozfi@$0jx$7 z+=Cb-W;oGAqqB$uOaq>0J!WhCW!V-L+0bxm(%;oQa5^E+3eD^vCyh1IcWCn4d{M-za(kj%-+}Q;<6{$WGhb^V|ibyrT)99 z(Tte?Mj%i;w;0La`o&msW&JJxeW-l7+^r9Q9h31(xm&r?Q26D)2IQ9C-OA}y?rwb+ z)#bTcIRy&ct!!R6=hEGhT@C<#P;^{>&L8S-%@w*^s7>Akv~at$+^LDbTyu_&M^$PP z`X@pN(h4Op!#f>IV`t+3XWvZ{6qC?r2ST8S|4{XC!X0~Kfh$woJKQasB=6`tEmuL0 z^P|B<{u#TmB3>=m?ANla%j!H`F;eSGG8YogleFFWg)07CU^U-)^1CE1`tHA+e!Yr*_2ORvem&%e z?B727_Xzvk0P|8$FX)aEpD+wAbj|Kxds=OVe!UCgz52a0fWpL}7e*ywXW53pN+p zEVK`QQXWr@wp_LC_g}XCYP5g7#Ax@wMuoUjp$)B-aw^uGX)>4vPQ@xJRBG0nbt+CB zi2*Um+>Syftk;|h;?;7J`5j0eh&gnlYlIz{OGav)a4Ke~P$}^acPehMW@vex3bJ%5 zr{Y@HGZq%W@n2|>RX7zSypj4_+59|DUpN&~6Q$iU7ZOf|w8Hs?D*o+Y)#OyrckWc& zL%*0)!G1k+PQ?os+)zEAUG2CC|>4#wrerW71;o5`(U3}@qt82GdRMk1Q zH-FM!#r{W|uKIzt({gD@zog)+vI-BQGt2rYZ-~oA?>>=ylmdyQ{gp{2XD+TM;yseg zr>BZP?TPfm>j`)nMu%WmhBewRlV&}Z%Pgw}kshX|hsFQSM9cvo0W zzDt!=iu8|yO=-C-jP%sA1(47SUsJu1aM}7vmrX>?VMo|t<@l9#1i3z>cLhC+c!-^t z#6epTk+ZeLc6QReqasD<1h`L4do>r^Rj=(@tU4=cN|JjkJF<*QBehNEfSRBY-H;+` z?tHPoLY%Pum8-{-g&KqDwkep%o2N0yV9Nhb>RIkQX`Nikd73<7w(p`CyN2Q(>$aNpW=N+R>7oh_ zAo4pNEPL|a$`IB59nds+6g1#Oe}Bp%tLSeM-bnpz)?=}-A+4mG>6r_Og$+52%`a5p zLd`vD%6Cgi=zL*g)!A}kgZ+Bu7B+qeuW~K8xcVgy(^M&(N43*yF3@`TC<`1{4O!qY zRy4*!$M>ha5@S7vo!0Y=1*Huhl1t(6S?J+n95x>!JuNO9eegtD?HD4V^s2{5m-$qi z{hieOaTg4}KbB$cn#l29Ft`-#n6NRmOPebVg;D-CkQ;l!Abq{n+`W9^;H9WIyKpc> zE93$~>RRuNu|jQ!R}KicuscMz+AJj8doy7hu3=@i{n*AK3tU7_u0%WL=;HJ}3y>fq zJPW4+dxMBP6f}G4{R~7U>LBz{T$=8ZWkMfB&ny!PkE%j&(sr5WTHLLCwxJKk$II0C zNGx&uJw=sack2^CT{1sk}frm+fXDRZO zxa23IL&SrDMi_?Du4%p^B99la=MRXFM0_gBEW>PIwDRQ?%BA?Zai4e(^C%w3WPw6r zQt3M5!wUbU+N?%;yTnNM7pV|mKq(qRzjHf!Bt9sjEt16@pd(GZYL9aPvy)v> z+8K{f7Q8jU5el{P_R4ZiN|36JV#OL#YqAY42<$;3-9Pf7^T1gu75x@F3U82RB zNlo~)k5ZvhK5cf%;8#XsK)8^<#JbJg!@`9mUM*e7M_AV3D={N18T|f8trOz?92F`h z-r-9I|JRx!eaT?NwZNR)sWf*?tp@%Tl1$TLZOPy-EV7FJCgF|L-)5y0O9n3kRo$aA z7ZOVba=t33UCBZf|C=CcItxMH`I5m|=g1`k_UoBjGI)WSyRcIb%rK3zQXo!fyG2JK z^5~DTK(ITtK#)h?ur6?FUVdqX@;@r{zZ9LOkC`M~nO6a3;-^smi|&MQ{%-<1CX`D#|GCmoz~S!#xv`!93oW!_z>dX54`9oj2`WIP{ z*F1dL>zMF7U-X@ghkx~T=du3<-%(tpNbA{IrJ1~ z>?e&$MQQsn!MX(dq_(FH;mAv%&ko&2$MjXlBwXuXu-Lwb|EwL-#wlzHT8Y3tJVFjS z4}M7g9rPwY`rYZ$S#dhZP2nzCz-k^I$YF6o z<1T+z@vH{e10@ES{~9X9U0baSOF0wzK>)dBt{oRpjJ|UuM#Y@>ZB)oO=iQMByjt8|FI_K&89@e#lz9bN3PxPZJ*jCk!bj4Qv zdl74gxyhsT?*UqWZMLh0&w^^hm@WFU1zTG0#|wZ6rY+v1Fk6Vk1D(QhCeoBx?nw2A zxvipme^_>J(ppe*qHm3`X0#T5ijg*o{`l|2`^2~3Q6`45njepn5l~Q z4?bvNf5a*!O?NF+(E;Sn0o2mb9y42Z@4uUK@J z5G(Pz%wip3v47&cB;pohAB`^|-ZfOHlz3CXlXE`s9BYQg0OOp+{+!AC8DPaUxh08+ z{yxk1_1E4;PXy5#ynqH3l8$*#_|oj* z77wiyhqMN##n%w;8%Z@?4pK_D9~X^~xSiDPf_3{7T$9l^A5wjjn4YB;ziHS&{^*uN zv^T=f8BIHfD0+(ggO=g7LpWN;O=3NS%4*$q-EA-BF;Uc-zkEF@)1$OZe+17 zuT?D|Bi@UTUy@WumCj7=GAO3C1;0qMaDcF#3>@Go3Ga< z)*y$mq=X!^6enpceSR#KCiv!vMsFBf@!_gNFA za{;SZ)@41Ab@@oG6XLyu3Y8M?a3AePYld_mZTtgSG&x9Zuw2i?ZALuN-`84X75z=Z zv-Ht;f18Jf@X@3uO0#V)Bz!bEVaYF4@$UqyrUO~@o%?97q+cvJ4g2-X`Dj<+pm~*E zYf;y@Mmdgk$uLJPLwyWy?fK~`W`?-IW!sT$s5DP`pA_c51zlCvd3#e_Hu~8U%6ZF3 zZp`P@R73suQk%#1;C>|*+zH{qeHiSR%u~vP%aw*g82|MkH?{|N!BA}wN3i|~wPoG7 zyg@I0x%Bz2tm4v=)N@q7r<YcO5b+s-A+vGRDRoeM)oyd;_p*^n{?hv#&r2+il}+O2v?3cVXoXyJ1Zwk{Q^l^ zp7@rQDDIie7=)#O$>7BN9SMUwG1_2TDJN$8`6ioN;KXd9LZxQeStn*{BnHH!_IwmF zSqaUFAzm#fwVPPhWp!d+I8y6`6LS?6Dka|GPR#Ar3@xt{L#8q1#2jGaHtV|R@0%^M z3MYnyH&TC_l~On{QWK>~GZzw0j5N~ug)06WST#8@^qo5~57IB@#IRq_oD*|3TlQj8 zhEm&2!(N8YAwPy2lfF8iL*3xVoRX7WIx@N6)C}m|=&!P#%)8>UC)UeDxzZSGGfK78 z|1dRrTvz5dV#%EluFR8Q$7G~Zu1u~p6wdf>1G%wXne^ipd7a9)r2YccWqq04aW9>j zbZE;Q;+i)jyBw41cZiO&@n#C2g1!SAAq6i~v8yFLY;?PNuz9hdqQX+H1Zjl{eV+vrN&Cq%My=4tL93p#9t+g(=~$MO%XH?KH*^z7tF)b zAA=r4o=O+e?NcykaE$(i+Q1znZMdzJV|1=#GT{Y|(OFce)XY8W80{X30Wnd29txRk zj^-E3kk_%sTs3hIQ}atOP6Gi=)%U)Mob_f7xj_ziB)0 z&T}QcR^m+Z;v??)zOxEzX$fP2ghmck2cGcRtW-FMP@3BY08-r-#rL|Vy4F(SncWAqoDqhFm8IN|%cRFFa6C(UV z{PCvM(a8ZMjiuY_F}%REI6%slAnY}}*i&3wM9}~w&*3RpHfAY2RwNscU>-G!0yIKd z!seda?es$a()Qq{lcGtl){6gJ7i~urEl4fITVa9Bv@TlLaOe69ptt2{t=ERskONcf zMWk$m`0Fn5J$NwM(rkD8VHM+|L-(%+(Z+r_zx#^ac%Eqxotykvb$h)|uj*l?wdM98 zabmR|Vn}jHYgE=TDud{})Rz|73u2IX1Am|7wg=HEJ-6QJHL4A_>*DSCb{)5-A%_Vp56`2SkVvzEvFgq@k6|?< z+EVL>9o#pQNzqAAgXrW&f3b@VVlf0ESeAent=t~&N)y4YEQJkj>VB2f4cvaCQ$4mw zLuwl|4KdKFdPz1)prc2cK{I4SbZfQI3~F;N7FCpUxn8OU)NC^vL!r}{o`LAev}=uQ zcwPlp_6K(lfFJmUN-&kD+uZ0IqSio{Z|c>K#(!dnZYTZ1$Z0PiXlbjth%mM{Z`&Dd z>AGD78q}E0ltMdHRZ@=VOfL+(!QR>xUgaxw;xvx?wv=$;VW zu>tA3FWPfCGxch|-7qT~x6J+=a~$^5;145Jpd@-fYif3`k(Wwqrd6 ztfulc7isV!MmyKWwG5RoW)|mw+d;Sl7ChIbK*Oiik?U~PU92@*Rk&OPw2bZTM47sr zon~MJ9*Wku?IVNz{kdoZhZE>8h9aVGAs8bD9uHB>2F`Xcg`pJ!UqJ&G^9a799f?%3 z9xNHu=HovmNQD}d?wyBcx;NK?Xgz)8X%%j3&htM=mi7Jkryp&k&lD}0nFyBQLG~R_ zpzMIrfa$rIWrZnyvA0P+>f%kXOJLh5#}3r=Vz%(2Px_;E%>Y()@E{qNNpC8;_nAC( zAlz^?;sS3CT(%$a=KS_)kU~KJ(5v?T>*ybPHqxiJCD~gh?D-cKq|~QKrYvHKPhm~i z!DpXNN3#udpLW^V`jbzKRQ>2=ee|<#IvKI4xk*MB@e~3%nUD9ooHkk#al&SHI!CS`%RwDF)7;Af??|Tu( zX^+$imsSxHHFTy@^SCM6#>J!n$9UybOKvw}4d&(xR;>!=tlWkdBdf_xjMlLweiGkW z7Hd3Od*l8aZXt^tPs9j0T;w2^@WGyfk% CDW})~ delta 14986 zcmbtb30zgh_xB8F5GVo<-eY?pi-HeV+(0z!XHvLBikLsSM}_}UmP~9ZsO3ZfKMu%%7ceXsMCiFsL++~8PS37!xkb9>>Avn z1s~offgdR90L2_eJjBKa3#k2vx8i$8B*XQ1(|u2PH0v77Yf>`cc5El`32_Nh60EkK z^M{5z_}6&*5z*nj^d3B;Fo!>Rc_AM&l5n#ZgZcWL_WZ?>iTvqa(eR=G((ZBr1Y4)B z=nJQC>_~q7sBHG7Kp{K91^n2RJ!m`uh{A>hAS6HvJ;aVMrZaRC&rmmY7N!_;EiV}@ z)DOB)sDEp;P|vW5uMDON(b!nmITsdU!)>m-6jHgn%V0JiyM$+`p7*Gp1Y*5VgjP^b zH>s!RhIWH(;wiyE!33jW+-hDmR>0UJVf;8&!oViMI3tE*gJ1;k+VOX?^HRIjA%P#e zTD%5q695mkg%z09AzSM}81h92!hjuC_3Xs^O{|9*{QSiG*}@P$V4I6?DemgNDWpY< zk_)b`D(PC;YIdl4Mi}5$z^r1m8m4l8j{`ynb6EpF61otm6Nk zl#BBAO{yn(XMRm~FQ87z#-nsf91Pfh9$mI82`DQz%IgkJeuKd#oLUA?S`-*ay*W%a zVIH4ZvK-z}4}xB!K}p6g-f{X2DCg$%9q^TU7<^JbJRV}s35FRa=T2UEXx+rJn?8#*_rc@a-_>S*g zBr1HZgHAPfC(|i<#tb}}ZNnflSWGR+_%wvqzL1=JOoI3bPdKwr@RT7<*0Q7(8Ph1| zzt3308bbK>GxMOo0A>Nt36;QeLJ@c(Furnq2N8Zmwb(OLP>}la`>5RQ}CEKdk#Y-I_ln`{-Vw-eTq;YDa}KglQ}Ka z6&C6W9rZdL^?!8KHNH`!Btl&wP*?Dpxeqc_qNBdqZ`3c(dzw(snLi5l>ZsqhP`|IE zZqQMGp`$+K8#PKI)bA5&hK(T$s_np6c>|*(OkJesiNzHEU(^=d+d_ferdHtdkJbu22xW%{7Y-$#dVzX?sFsxY^`Ydj?&0?88i(7rq!Vt4C#4HTHc*!a-^jS<3 zv+#$d%WpVMpcgLf&t9;B-eQ5?qChX-n8Dt&fqq*9?b+iS^cL)b(Sq^X6>02*O%!Tb zf3bt%vjLBGV?WuReXprW{lyP8!ZurkZMN_=H~kN`=(efz*EV$xH!lP-&Xij(W?kCo ze(7l={nFFM@=G$#K-tCe%K>e?e(4$1#;0F;u!}IxFBK_loJ|yJv5aFZ_pq6^XNIn3 z_Fqs_v?7JwDnx}@h#L{m>)|#nUIg@d9-H;vp+WV? zm)^$TcpX`}9$%4Jm;oKxA&JY1*!!$^v`@XGiQ6*RH#X>}H0YjheM8@;-Vs^|g80Xk zjoB8Jc>Nb*^heQQUPnla3-jp+D2lQ$o+u0B>D9YUJlX8?q2Kn|w^C$=+g1&NLV?P% z&X6$a!9&8lkrk%sxQjL1o@u^u55X>q-LOQLggP|i+@(LdLsOEv(hnuP=)Ncz!q?xO zg2!j7OokKDJ?FA8e?4bc^&>>?8TaPGtGZ?CEz8vFmN}?{-lu`~9QF;mUboD*x+K)$ zwG0brOED(MqGJob>i$f*2uf|))~DOl3(M3C%hdBb?z@NKM0Cq+_uDe7|80_Gx~=KO zas(umj(fG0PSdNc*J;>r8|oom)Se>WsC!`-W)slLhA6j_Z zwNcQEAA2ALj|FQh@VIAfryy%hn}yO6X+`c&!W_JAO<)5ie?F^!ANG{ZJR2oU&;->D7{Y+7B(lJR5|0Ht?1Yu7C}?c^>-<=Baz- zi8zrnk8a4pEoAM+#szdzxb&T*aBs?lY|%r#@NjRS^z;q)>G4U}MfnaC>5@=~*EYDP zCm5EJYcwTkll@U5qA^OOY?V}ZZc`vIoQuw^gm6D&PTi8HcQB&XMRkMVKHWOimUXI? zbud}cPSFc|g9hC5v~S?mx^;Hzl2C_coqhVF4>cue2mDbYtb-CMSK;Z}Ej#Jdb!##F zE(HIILU4c)h zi-4>3>|~pyEMD_cH0q$`Qkm_^T(6F_a({FP3ui?L|I6b0w?E5pBIJH5e04>Meuu9M zb{vx7>(0Vlw$Wyv$1M9iX4z+DeKxDNVc)J{-{~9sV-W&7p2$1!^!zKY;K>I5;lBd@ zhn=_4tG#ho5B8G{`dJJ5Sqpl~s~uSDNIjcg$ZL0Ex#|AaR#_n|(&y_vE8*jb;NvN0 z_YHWm!9Vj?;Ag#dr?mZNV=iU`1w55m^CD$*%!{<5BRS`lwi%4F&%iU*_YCr|OQVC% zkqWIih>E;HfZb%%wA8LC^%g%g@!B_|7z(8*na3O6EX9V+QvFb9iXREKZtq+3MFtu2 zPBDAlW~9xQkv8i_de;X1Ejx72e|ZR8aO{qH)BJ^Fcn=2c=-D%N@=!(0R2Bo z`LWZznPJm8&9_c-PXc7Kr4CF7J(xi?zfSiKgrLMfFZnGdR0`rk9pW?rF}Tq#1UTp= zX{C9*-~KmYp80MPc+84lNwoL-fH2+w>nokKsmqg$gB9xpxYr)X@&*-+>uS8fl+c^*sr|qxsL`wWVCgs zBzag#;xN4bTR0E>xIdP}tdT)h{*LC$KE9GgM+sk5W$q{%oj5oEXRC?cE+N=l5ptEl zMsK9Cf9{Pu{B#BkRRh(_F5s*7dHpd;_s3o+6X&2blRsiv%$kW(Jk7Ua;gYZvNA{%p zd2ihp&!MfGl%E$9A_Z@u4sV)(r+l%OY+1e-C~X-$N4n-#2bnfLFx|K_%KW+rT%O8S zlV{JIIDJ+X-ofhq1^8`Z{-RPW*4I%pX!4YKlT@4c`}{`yi16~~yKTIS;`XY@?Ctg+w0=X}!#zQb_? z0*tR5X15gRW_kT-UVo^A^7v+lYaag&%JkRcqYzMJkRjYY5}ogGG;et_8eKpBWOt_m zhko~-H3!}G7oGeZ30?Dr*Y&GVnllW$$3)913kKwWl>w0+>yFNVn@{z}MWQ7@F~Gxr zJe5e_oX&Jo{@;nvrdf%EQ0jhAMBtViDj3aS)69TN1kgVPGoi>2i3xJ9OgGEb);}|lgBEWls4@7_m zqKN=8mv6;)iw!(HM^~@Y)$@&4FW}W}#*5;(O&nhm$L-?yvN-ObBYhxnjNjt zU_XlVg9fc;VqmCr@vc9`SUhk$kq3^j;Hgt4&M%ug{kkbt%d3o1Ui(A3Q^CY39<;#g zj0pU35$oWj#en?g*zW9FVneD^&Qq{q+)rVQ^%9+wfA^&4(!aH?&G|Pg5CfHq<FVi{T=6&?(k6Y_D_k%McIj3|gRF7CYtS-M&oYd9J_!<4d|uZf_K$(+S3GLjTxH zCY3z+f-ZF)urL>zaX=FygqYzB+7C9YHBhqxG%D;tseVuaW|~I=z#|tyU0lQhGbIpW zq15aj2tAw%976uUf~ESQs>BhCwt~GDnl#lsWN1(38y+;2R+aw-m)us~;Ig)r^a06~ zrm!}GRrJbm1`-n+a%%$Uc$tv1oeq4|?DI6TM>3a^9x) zH{WVyAaTS{APF!wx_IrfOxm>Q@uV5EwT%%0&H~z6w3KmvBalJXu4S5NSka`XFsn+F zABfmOX>y}W3nv@tC5dp7AEUyFxcd9y#EfnW_p0^e{okcEY*7q`nf7YI*z9;MJd8%6{)LA&4#<+>;rzH!8NDqSYURJhUc6Qdi#}QL{$4^^NbU|HXEF9j%^nGRi=Da zPM?+-`p~UCW1s{gcUsc)Q1Wyv^k8oZAu5#Yj4|WlU>w6UmG_#+Ze^Fv&UofEc_`-)JQAHE@nzXxv|=iI!UaI${Z)%EF%tu)!8@9+YNO#JN&5i8wj28gX(Euq4g|x)OO< zT>S&$T$Tj4Na8#Si_Fq+=o?x_b`hzxa=pksW@0Ktnd6h8zsvi~SWew+G`g4U)PzQG z4;jH$ZD>}8Mx{~|>>rgvQlX=y(w103rNUH*X;n&#(KNGdDx@T*XH?OedIBzw6<+ks zxz-FdYMHO6!W#Cna1famlJ(g~(oAvWHt)!C^ISiOGvhnJTC-IL*v{S+gB2Ctk>(+q zX@iX&ThSLslUb!Yh_gWrW{xjY}BZ^PrUXDFvLsZh)Q8FBj8vp-W2+65+CpLXCsHVv!eor}OnMJEle@aZP&(^Isuo64b>Z(s z*bB1i!r$0J;!*KTEwc{GH>OHrVwnYrX1i|CNu`PScwgKo7nQiKVw76mbuz=Vps@}Y zAFrp0CQ3yeZm3OXfp49%22o7IGQ@Wq;n{zv4L3ue@dBCxI@SiXKmb(<#Kw@S2QVMbcoXuMhAMMVx?7$laL8RT>XQD(W?(EXk2OafoZUbrY&m{PsE!`vf&fg z6J#>E8QVsedX|8BrugNfT#HPSSqt-JCwLPV3S{-|cyD z0}Dv7Ez=l*m0Lb-CQWmbSf&jX;uQZ1XyBjbCc!^8UW`&vb8LcMEGbCP`Ij%IXsd&> z#WtM_ee0CVw3P{s%QSs+(}3@)N!qHEfUH&IZ8mrd1w6&NeA%*=X=mbPptFi4kBTO- zZf%0by0r*cvThe$iDjC&`Uk8#cnK_1tg9FV3)qnaxxYD(VCLk*3D*I#lB8S%UFwu$ zzmR2`EX>#s3Htt~+3_0HK18AZQElaAkS?hf>lRe|;4*N^MOlhjpAYTyMVZ2i)Z1&# zK&M`Q0W4uD_@ig58ffO_!=qFVOmfTVV&`&m<6t-&+1gd8Hr z<8F-{kCS4NlHQ{$K@M^Cx5;sdxqbxTC#A+OrHj}XZb6Qq&&Wzh3j8>_(mX!`H!)9L z4*gu}Hf{=jpdLC`prtvn5PI?*$*t|_i3(3zJ)l_`8efj0V88f+pG+O*>`@RUIg^%% zoQX2mk5ZgTHNP1F$>z~f5aLv5kpRc6scCG%@2F{J&S+Q|rP7ew~6Zt1j%xeEHjB|?VU@ApgOH+~#x)?5XbKtHo~ytjOqO9CWyH1W+* z2PO%TiaHZ$pl|BHd&D7Y(g7YWz%_=Z=G^2_Xv5x3_Xpc;m{_G zc|c;Zkgc;JyGtNbOu1UL)VCy$FrXsJF~OVofOO+o^HdSUjuzjNo+WjHCkN?D@I+kw zJ)YoJkr!3BhdJijYanI33;%egvgM>16X(sVvVX`I%IUFGexgyixbjcAnK%KSVP_Jz zelP*UHzaK>ngm}33^;?bN)n83NaQIzlvM`LnmBU`eHflcf5K)^hZW*Emh~g3_>)l5 zUUV&KUs6zlKPmavW!^gto*hj;ND#kTFz7?AL0@wX`c`Go2Q7n2_2PqoK~*_}N_Peo z6%4987_?|KXk}?oPBSR+8N^oOGxye-67+8zGwZxNS`| QmmBzdmAjM7=M2dHKgCe7bN~PV diff --git a/docs/build/doctrees/features/temporal_features.doctree b/docs/build/doctrees/features/temporal_features.doctree index 6cec63613116ccf46aeb51b12f71be6221a897c2..d2688009b313078072f20463be33cb7da204a4e6 100644 GIT binary patch delta 3385 zcmc&%TTE0}6!n~W0D~aNfbzOC1H(LIz(G?Ub`VgE78Ma6(X^CSf7QyGX45%||VSQ?V8+iC~s)z9;4%&H7@eGc>`37k|pEXO&lyLQhd23k`+!Gc8 zn}3=oa5y{vSzbnNZdMEx>DT!ddU3(_Y%SXe>oU@CY|hxr{c@-{sY40X3T~4LZkNu6 z>db=j04@gOJH5>TpLa(~bIXp0WrV~X54>lC*&ICVEkbq?ioGp8p^Ec>ZZgvvh$_?{#GDXKqv}^!;HakD5nQ%43zsvIZSBm=; zbaz0{@+7tsjx2Zbo3!kp3StM~c3z3)Q8j-ZCv7AHohR_F(zUNS9YMk@#4!BU-i4P*{<;l&HKQeUFp0R0{)z&V+GxF^EkIcT=rl z{Xz|!J3^k5+iW^yx}EF>A}WX-)0q+2AQU@dx|T@C+O^gIK7X<_n3F2jSvl@@sWP?%zAMcq3A0sTkjYJ7rebQ-w}Ri3N@=kb(1c<|6W(EF!APbQ z61K5xEMP!Yu{M;1S+|PYFXPVhM}wObiye*t{Su~f@p>JJl`R+zZoiBh(;{x>hhHnU zz|FEujtd06{UOl5V8bfxAqDnO)UdBb!2V$}?2%|-56Q4GEx{gw(;h#^7lQoJ10na7 z|I8Egs%XUNWzmS!M^Pg3kAocAo39p#3H*4eNMseh?N*HR$U32{s2Mm>q2P3*qLU_q zj`6E=l4h!s|5a$WPH?tK;cQdXoV7=CwsR_HzGyh3tjHNo$eD3!^2gIz3`*436ZM7( z>Pcr~$8OnNzl`rOOw!zc$R=wp71W));>n^rW6${uv&f?Rr<@L>j-?yMp9R=H?+Y&dhf0&a zFJx&Q62>L{t*09%>#s8gpJe@Y#(>{m6%MZ$=JDHbHJIq_?Cj`-s#PiBW2-J}?2E{C yAr66HTzg}iw`;f08^C`m5*ZE!L<{N$+M#Dn4L=nFU#|He#!8xjI(=~MCiWl4QS0RZ delta 2436 zcma);Yitx%6vw%Dc9vGUebTY*?#_0%E!*dIOX&kFwB?n;+ES!Eszv)?ahO0UEG0p$ z0SyUCD_hSJKM6r1DXAusjePJ!MGYU&M2s zl!o~f3y(;3j6Y)V;OQ-lgEy-zaS30tM6s%9+n?1;OA&_$e#si;(+q;yFLEb`?fIqR zIPQ_bnRA~vkipC9pu#HQ*km1G?c^z8x9+J8TI~+_M^1tjwz9ex&^Wm4sDFQ;&);)k z|AC&+nZd-q6Kf6~-q(N7A5y0nt|y?O=U`VL5NhdHO4R3cM|E({mdWcloZ9HZK(}md zI8Hh$*lLWBmtLdqT7^@8w_1x69L~vx3-;qYq$36iu^>qMY>J@RTNJqkx9&hg(W%ft zs8A6Vv$Aw=NZkXMHoMu?xoKR9reR^dkmM*?F^X@gM{zi#2I!H%)noWH7dfaQ2X*8i zyys|QK@EB6|ByR#zvYuU@`Q#wfo>OvJUthADh~NC;(QYFgoZq!BTv9J*Bfj?LmnsO z#MmiAnk2*I22;XHg0rgSxa@+ytsV`yv=V7uL^`M`DZKhKAcDY5tc^nMN70lR!fd_aIxzAEirisA1fi|a`_ zp3nnz=863HY)teS7t{E88{x40BaTvdRGg22>?KaAmrnB~y7f;496I$UsBLb9^CiEs zZII@XV7RoFT9Dropd!l#ZDn%OP28KPU|u`j#j02Lg>%O)7IO7~8Kns6U+88#e^#lC;wW~fii?29m;{d#!Q-@T-BC6@4}QvkH-y=Mr&Aq9c!cARh{Ma)p+i@O8h7jldH4Fy zvEU5yA&q=!(d1X=l3$J|A6X3fkWP*hkq<%3x;-$n(aO<4^luaWQ?vB(QhiaonqYDQ zHH)EfB-Lk4F{yq?`7KpQtA7_`T0Ns@ohP!#7{kqR=|AuLc(ytA7eNBMuU407=7E#G zYQ4;g;$?cl7AZzQ_&p$*cI%Jyd6CTVF{20~$#gpv;kzjr0!dKBVKWt~SlDt&u5^dG zQq$`$Gd^j0-DM8fHgkcWH;3z5e-_*-t-OpwU@)<_>yZE0i9UY-{~4&X@K!)^q6p$T ZY--!ee=@^x+x4Y4Nc?XK;g+2{*}t>EwXOgF diff --git a/docs/build/doctrees/index.doctree b/docs/build/doctrees/index.doctree index fd76656bcc3890da26c246f7a825a28ef0d5d2b2..8b24805d076e034ec597e15e1cc58ba46c2e73d9 100644 GIT binary patch delta 45 zcmZ4gf^q!|#tqjKI5|=)5_1c3Qi~@)Pp}Z+PfJZKDJ@EkPb$sKNl7i*tdYnr3;@Qj B5izYuvu;AoKtw_u*$Vn~UtdYnr3;@UR B5;_0? diff --git a/docs/build/doctrees/utils/calculate_chat_level_features.doctree b/docs/build/doctrees/utils/calculate_chat_level_features.doctree index a3d616920981bf1eb7e1dfa4d2796ab2679f7fcd..6b52556c801b05e48c154e183ab9b2d2414fe479 100644 GIT binary patch literal 80462 zcmeHw3$Pqld8TCPUg=)FW%&U{c1O0X(W3jXY-}t)Vk~U%OO_@1fo*xzcc$;{Zp}=O zyL+y50S6Nx*hyCUvzyjg-3n6&*Sg^|IdH^@BF9#^YF;yjTI|b(Eq$mPFpuxCnwc< zy=B!kr|Ye)TeVJ8Yq{OWy1U=qeW+XU#%%S3V|DDB*7a7PL`^pubz5t7kK*A*D(@N% zXEJDD)K%>{O;p!MymKcfm1<2_-D*Rd*BaGXO?5lA=Irb0YmRokan*HgW2WPxf9h|Q zQFqX`x2D!m9S1jYJ)x``8*Qt26Su3c^2Vy+tK+Xx{>F`|I~~n-rcP>lXX?$GbKJGsQ%5wl zsT{Pen&vplZECx1wC1K<+^p8DX0z&AR>PS>bIz3C%oJnMR84KvIt|s;(zr2cJ8ri# zqmOxO9IfUWRx1>NKBA8jt15Un;u>y4i#+mnh0Wg2+P&Xr^Zg;8m8Mnipbj;G7FHk8 zPLg~g6<4r|EBuNpdMduJ%QQh(^w;aZq_5I<9MCT~(3w&7&5)PA6|HW=e`n*rbMfD6 zk9Iry`TA}Yzt}IXU#MSj%WAya3U9<{)wPom^8GjK+mg2i;;{`T`--=^tr~XMd%gcc zS1G>ch3}un)~@$&{L&M73hSc>+^$OGUnR)*-&Vic9}ip@IY}OMpc`Pmck_Oz<*hUT zZVdE)f1nPQtyGwk(1~^4myHs*Zu7L}NHo z=APSNR3u$iXjoS3s;ll(exZ&tYvutg0*2buud@~;0NLPE5d8mJ`f-{=!Rvjpa zK^7}lm6m2#U0XF;kV+OER2Ig~nw{MT$+&xzn$?r9V zFs{QpM3dvH&31TCd8gub+70bKRs%mr_b8%Nr)9X;Tpz;tPBt6+*n42^X=B>Z z?0Jn@m|4`F@%!_h8rV!bcCE*B=P}pqg?(hO;L1nj1-GnZCUU(mZA{5D zTk&Za^XNr+20fQbzQRIqUVp(=ymc7x6W~3g$lE{!GSy*!Yf+i%@7Et8^ZDySHu|Hm z{{E|tu~$pJ*Lf1F!CyyOM!d!E%idxwy@me@Yl)El)PEqA`mKz5cnpw>tJw_$6Sfe~ zJ$qsQUNv$98M)BZgv^aHb{dR*b@C`Sc?9F;o>zJ2+C?Yc$aMCp{`Mrz>itL9jgQG3 zV{RTl(raKMQ{dZFa;SlXV6cFX$ZT0NCcL6<%+`9Nfn)Dom}6!Di1Md>FVFopZv8hun^q}3XnNJrtk30IOsk~Jc-Oy@QPf*P{I@nv@%8m zdd^ncdgQV9n(I~Ix_!z%%%O~?eaHOwJI2(uqECBkf+7)Fd_O7+Sd8^;tyRb5TRjQj z7j1rPpLPjaH4Ip8wGk<<|1XA%roGXC$6_}5NwmkfGXpHby7kUzFOXldFyS*dCLrS6 zkHN9Om#Ks|3i9DebOR~MQ6gl+iZ|iHcJ-fmYw(x5&<4H;r0cE29qnYhVblz_`zR}L zLbY4C90R*K6#N#^>@&X$9iT=7;2!dUsQ(}Oj%DInK@8uQ`I+>#-_v)PTQJ#>zk>4L z4HW%F4*a~^Z-SR@s14)onli82hC0*G90gcL@pZ>hI*wLXW)>7z*A$6cqcClm?R}IUZafA?=7U@Y9 zQ&F?Gy0A9>au!prO1myrNOmg|6Usrhg2GgfEuattP0>}Rr^>8tHJQo@eRZ%#>#qY~ zQ74!ct3b0>Yc4{QHx@eHoUf5Pg01yJY@PAh`T+g`JEy%fl!}<=O}ZVmSo#mS{S6dk zg}0d#tTo%Z>KIOxWrajN4t1>x^VbQYiGqdp!c2y?+Fe4Y{Bzi4!h_8o+jNtw;s z`g75#*L(;KvkBa3Yc*rmsC6Ha%-a40tuTf$KCav?V>W_kc83-t-)OV(=d>2&j>u)%8LOewDLrw8Pkko1 zbjBHRb?vVx^!9=3|3Aj49@VGYi=_JJ6e2U20k)x%Or8U){%g>%O!Y(l#8khBJt?Z6 zQf5k~`e_Oxgqv(FdkFlj+#z5`BRSRjY>N6bXCMB)s9Vn!5!MM1YDO}IEpxcWyE^3LU<-<1^7snWx z{fiDfE;KYO8y6veV&kHRJt^ZNrOd(7HAhH4*cG>?#9p_q5%n450*i_%&^#yX<8&o6pKj#l5m ziuy~9d|%CAJ5BVvJzcsJrm|b9 ztLQ4f;k6}8uJRr$!D3w1e?tT(Xo&{4@mlF-72nY59}Fqjp7CD(+EhjITCFn&C#SJ+FJDAh@1y>5ErdmdWooD_;xc@94mOj2 z@h*CmKFkyXHCLgSAIR6grau!m)6eD$+3U~gPwL*}Y>KOz=N_fL5l^U?de z`U~Dw0~1l%&9>`d4?(DPVBZLF(cek%-}w0F5fZU{d--ixj#cWmfsL2SESWt9$bm{~ zh`_nD_l_bI$p{@c$b(iFM&=^{ncV$|&%n`9NP~>xr@si3E#&uSLViMAzsj&eD5oIW zDdMatvO*x1q*ym*XEoZ3AI4xQtd6bq*yQ1i1A;ac)lpj734~A^oo0*0XbGA6AuVc{ zt>lEk)TKa*P@~TlRU`8=RO5nM5IBvn+PoZiAu(Fat5WV=7rE!HITTp-APNxvE$I7Z z5&C#s^ckuY#zoD8kv@Y^ozRT^M`&q53{{G&AO@+NFkGx1M8rxf4s1aoQaEt8_^2+W zE%ELz6?u0Iam9QQHIlP^!W5VRUL+pn#EV~LMYF}Z&KIZRhfaJ%5xXZ|?O%($8W-!o zP^Fw=jR%zaIBxMmg1T+1{V5>Zwnlw|A`w+=5{m@RyOA{$HZ3ONN}EAXhFF>SH)NON z;wN4f62EXDQa-9N{pEttAaKS>E9u{f%(m$@D&`Kn67~}^c%R&5Shv`2Gr!Cl>~vy^ zXTFuHu#MEwzgyOX|A`N_p0zA~xsl(VfQ7dguo-QA@R0w#1to%=gics!Q_JG_csXi` z`h)GD*}uzt+xwVjNjtWJPm=~-La7P-u4{FC(Gi#)r_|Mxd&*lqiBmb~!pXJ!VVV1U zoD{*{@y@^!ERP(p@F^V){7PgQ1 z-Qx`S+RO;|`!bKiNti=jdDVOT8gVR)-U=_WTDV3EOpDCG4>$n&%%j_CXt zHRlP4=dFT)@prlM4XJ)V#qr#GL66Lw2fW~TE|nd^vYIn!t{gmf*&w5hpxlQ*LI#xU zKd=~zyL^zYBLI#o3e=|_h#PBD5&-w6{rsa>9!7N#TcwX+*?vguRK_P=3<2nxWBA{< zDHZsDyO^%;+8sLdHw@a+OAr4pYwM+le-Et*ef>o60({cQhIY%`lt8E-6+#uh`{Qv` zM{z(GyVJ0L_Jj_P0mxkCUqI3~lC*=$Q5egW6PAr_vOdI95hDbSCs1cw6f%q;JOmjH z2m5E?{WsaVCZRo42!R1@o+Y?Ps2~pXmMC>X&;F{Yo|#Wk4Ildnfh-#K`*sofI7oPw zD&+(Tky)g7)_A!{@67%F0cyzXI<3(K=!>Y#>3)Bm6)hEgts0RzFwqH-NDej|ub@iB z8Jn_P&gO2RhUey{COSPALR-F|qbQ4JtOUy120Ajt$HcrPyBrrY@vM-T#k4L#S$yd6 z`9WHVp)5Wnrq`&L7lY1plx5yZjH2h}ZFF@jT^$IoZpYQ5=0Wy*2m3w5eh;(XBkcE1 z`lUt4^3aeW-1xRdd#+oUtHl@hrDCE7%ELryv<`}l-ki^2O6yXBkIt7fmZPMsVq$P> z(3e56k{Z_aUR*|4DNQ6pA|}Bp(;=n}iCb*7F0qaqZiuDIY*HAZKMP)mPk-5f>KDS^K+u081TA1y zB0>dN)F5e+9J#=hbb&{)P>_0teTF(7#LE=5(NL_8i%$&+XY)18{upX0kRtTxzZBIY z^V3wr2TX$1iw2mUDMBCj>%U5siu?7wfa%2|y)#exZ&5>L*CT+5sLbg}e~A?>6)^ov zkyqo4{l8SHIAgN`)0R;*TzJdMkbsHissv!#06H?n$HY9IU5*1L;#navi)mc~nE24+ z_Fr0w0VX~Hrq`&L7vPm-fQg>_fawOhVt|QVohHCElj_&c?=2N6-MuJCX@2jZ5b2u2 zZV_Whzu3_^eR#-0QQzlc0(k(+(0}C0BS-g!b-fpsCmJG2`#b-{hS@@aBf%oGLEIV^ z2E8L>`I3M^CqRzO-X>sBDmR4bGw(!m<-njz2N-CCfBrov$iP2+2NeT8Zy2EC2;$*N z0!R4nK-6-?Q%glWp&Kjk&fx_INfg*eNH?@j7&ERrzd!&i<;xa!7S-qicQ+b;zCn3#zM_^r{(t9$d#A<|nAQkDpSd z@s4-|FbY*^H1WlTez=tHjkD%Lda7WvqO@iT?#c8EMNaa~#RW4LOYw;20 zj>J@b(ZK1;Md;%g>IYP*IELy4r~ju&?+ms46Kcq2+Xy%%Dl@d1e|z_RRINs}IEaiYzUP#O=^U#w1Gm9Lx+F@Pqzb_-y+AEA9p{wAN`Cek#u+a6fknc+Z zy8b4}ky+yebWP=kFpOps&6NXP-#F;tBmDa3AR`06%EuT3u{nc?y($+$vRr52%2|Qr ztUBer+47`!mNBIAe2vI{b5Alu>K-g5D4(oLVyBx z{#qR9gy!AP^2)<&6r!888V&0Ntu}C>Mbc@7vQDCzed80#;SNjYY|K-hA&1Vuz)eJM zkx-W3;8Vv^AxCJ_SBq+s`4y_+V@tvEMT0*t7NL)O>3>U=ihJq3@aHE*dS`y|k5EHq zu_N$@sLbgXe}@$<75;2kEAvkJY-Sv%O2rwQ4S#mzrlv&rL-SAq{+tgwGQ`Kkd|q}r z4u6Peg~Ti-Yzh3~Lyyk_(n<{e@Ch!xM#Y>4oig}C&wcoF7hN&&#f{E1}8q1>I8 zU8T+G)uz!jYW6~@5xNqy$;3eZzuz7>h@z?N? zPsQ0CY-~KtQjz)uIUzDCu|;8iJ{i0WpYyV@(sIi7ks@=p+yW_oB9!u?dG22+!h7zy ze~~H`cQAWB_wN?zow;-`poYxML_Bw*GN()T*Q{u%p8HRWyc%chKU1aRjLr7kH;l<< z_$ZDj(Q_x;neg1lKu3o7n3zYi%W==0cveWvVwRD3?tJKRnNI)oYPbxucrN>0<%KMwuwqbOJ?Eze(XJ#;`q}9WFI@g8j z2s80yKoFmJvfbxpZ4n@%4+;^9AVVT!L1>))Z+}{yCJx=8H0xm=J(7_hfuP8P(`nLE zgY9udAcD>p!`8J0b_A4v7^9ze0crD)EJ1BJ7TbWO+Ni^}U|DF!Mmh`!ncNM^@Q%En zq3o9^bwbNNT2#x-k5COi1R(@s-r19{t`a*-$lH6vNql5ib8$W#&pb&fD=5VUGGGL` zE!f#wVg3t$N)1JAK21IQDcS~UO}zA95Bkz;poLGNvdjV#R0+;h`fS)wz_kO2Rz*)( z^6t1vY0NIGHKfqQnVo)0l!`D7jPb|m+di(D%ti#+pM?JXM6j~FJ_HB< zaZnD9frCFTlY?&yIT#(DN`iqh(;2cf+JLirJfWT5J&V;7cgGj610lGvahXFOMd1n6 zABW&ZPh(tblM}n%$_dID?4QrDgAY40Wx{^zp_Y4hzuC6h{_Ke(JT#kI z8J;ROvg0BgFTG|;okdlJ&&J3z98QUg*1izP&OrsTKE{+qTb;YI2z`7J>2j)6d=aU4 zb?)XOy|ZPTx1dIrjs{7Bh{~MHHkY!ZrLNA+6?rwz*g91z&e-hLxp(HKro`1b0#u3B zxs#01S@=OQJK5#<>KyT`keK`1DKbq#DpqcfIOLI5Vykl;wWZgnn7Wvg@a++Ush z7+tZ|Id*lLR_CgiFKen>WhVvljZdY9(~k_jHkU%-peu9oZGuzW4< zjr&=HT8l97A&UarYMyPQp(i?c1Hy1@0>AnjjuhX2Iok+`ZhgQHh)zI?-;8er<~x6T zWk%m9DwPwuK?zN5wz4sS{H8U0Y7BTjqamZIrW4q}CI?5wW(Od8`|&zoUz#urjwhR=v+Hw+8&yN5)kG=+{zFi z6LTxO92Yb3tdN++B%NGpi9i@W^wI%Iaz3EbB=}^PUZY~Z2Xx9H3_bTD%!lZTK^S&* znjp*rbDCSNX*Ol9b{DGbn~YKs%;8}XObUU60vPEo#FTy{_~p!$;vBxDJ`=p~hfLv8OB>@mMVoEjFqycn{3Nr0E{f*hG$O@NnFZV0<*ej3e{ z174Cz4y}H1WI_oL!(pn(gn+4NRVhWc4~v+^1a)= zNM)&#CzR}*qDp3-O*MSLk}8rLdAcE5D8zQ>a4@YLLZ<-Z;bUg(tm(OJ_7TU=|HdzBTuY(W?ZfJKR8(ild%h zIQh0By)&F~7vo}o_DA3(QJKMTo@nQKR| zC*RK)EfpUV^Lw+)aX3jlDA5MObt{9wT zSEmV1K1j}9U2SMp%!-YMk0+~G1FY5>s^iS!SPeSHxKxBWTL!|+rg>1%d25!dn%%Vo zhhChI;T)RgEiNXp7ZN%hABJ+Y`dnDo`@3aJ(Q z$SD9|Q@J6Gs`+&^R}O%cX2{Ar#7>!KZOFv5c}F0FxzZze@{tumzFec=Bz`l{3pw(= zF^+t3?0j9FF>o3Z+i<|QfUcjLke10qrpFQxW<&g1D9{6-N-g(Cko=-kHySJ8H;gga|Yv zDs%emSFxg{LNlw#t8vCQs8VspW<#_0=BB1ZXhySJ0-8OHTN&bGVty#Q9EWDavqEAP z4uJ%k@u8Ovw30IgMf&&@nO>t}{#(!~gJ$&Hhi3not{609SEmV@-ADcc7D!L1Nc}U5 z1a75*u!CiQuqbtd!Y%1B&nYbEcNWLyWLZ8z^*#`@!#5%6{{Dy@EPXAk>wR-sfTg%J zhl=Y7-k2{En}&r&KMr}lBw*3sgB+O^O~mz5xgo5e`6V=04lLS}wRRDg@hNlT#!LXz zJAN3{nJm&(1k`YSfW`hwAXPc2xi}7LYS?Es(a`3#2A!or#!(^T7=o6(#f1?#2R!I+ z1d>w?1@M;Xc!x-~1-yvCk9Q~F2X+Nw`=I|3Q>|m;Fbdb-{s%xwfjMj)#OWp)MOx|4 z@B>N`oik1w4EY{KdK{Hv5TXs*q4M!9g-d`Ep*I&7)f;ms)$pN(VDzFvi+x4t;~wx8 zRH?WJ+zTykDbhRhIp2yJGOHSa7DQ!EpYt+Sv{Y!J7kM?#SdA(bXKXgKcqlhDB|;0D zHxkfd0k<;5$HY9JU5-Nw;#navi%C@iE%?w&2MS4hPtbx-ROvM;=5K&b8ML71KD78a zT`_3Eu1+VkXsP)2vmQA%_U!l356SRoS z_>{S3Q$A=BtM~q{{(_eYEuvK-(1Pm&EcWLEsmh_nbqU9oANQ5aZo~Rhn5m>=udzo> zWe#r$I)-mZ7>>>0TYtlmoSv2s9El2*=knYT@B)clE>B5;b5+W{>mv8OHHS3H+Tw77 z9sVuYy|W0rxihzeDiwF;dcEY!i}cRir%O>oW*{P7GEte+eY$`ZE!9gtT;$a_V-HfL z;*8DqlJ(rwl;|as2~2p&b==Aj9}}~hU5+qTiL!vpQI?APdYLg&vP+vLoQ=3FT z5_g$>1&}Dt4RGo+VT?Zs!S|p0@h!2oEp||el}$HlJJ|K z0XZ_en(&)bxgqSL`C&9yj^CX5sZEcVPnrLS-t&BFldQ_T=gd!S615@@G*=85^N$4L zl{?Vah_!iqQ`0e!DuD9q1;&!TA8%SM@|Uev!)UP&%A1{5u!AJ@o`-Bjn2(z_xwKmzKxq?MO+|t; zmg6t>2nulAiQU0xKsHWR2#&MHap#BFWJ?i&rt0pFmDQSUU8T>4Dl=B2z6TrE)P_+* z&bw&ueo8i_ZQhht--3DnT_8AcOj?!yXObc|%pe{Z4q3+{!#h@;`I!#db7;T=y2hnZIRvU{0 zcJC}>!&wiBgTh_u(Ng`G(QoV7S*aB`~?O`^SNh<>2=!0e(Ytg!IkYyo&u$0ZeiYEWAP1_VaA_Mtj zoUz%MQO`|HiI|aQ`vhjJGe&1kUy7+_m*bd`cveWv!XJ`gMn3fTj4Q3gFe7&=(rX|* z3OZ$&k)8+PQM&TOqjYteFylQ&Yu2i2CovPY=Co1+qqhx<6=S3giV>yWWUL2CFmyw# zAol?hcg1w@NeFaMEco%TuJ_C<9t$SeHWUUFj4?k?JQ@}QJ{vN6NnpTdK#pw6OJKlM zZV2;bei+S_g8_HT;8;Sy2zsL54D6Q}HVpH{b9f0H2p@Eyy22#!x2f&D8sH8#YJV&h)hN~mO?yoIa?4(7O zvniNsUgeO|mqTKZjc=9ByJ=W>jA{g-yA;LrIzXP#rIu1pKk(~V%mA{}qM2?T<6so| z_JM~9C@U2AggRk6#f*XT7?6;Qt5INkf;xfCsUR!j1sUB(An3V?ch|?fP53ATIl;o% zeD|?#n6~jXeJSVO%{hHuEz;+XM4wWlW-3%#F^N!^>1pqp;dms(o_uvN4W_vMz?VDB zK93H1Fg#%QVdn3&(0U5=w~;#navONSso%8U;^?h{EX z`4QWM7ZtBjF@GC$%Fs7G_tE!%qAP~J+0|)6-}g0e@(R{S7bjRdbas#=b%SDXX?Bog zClVOGIa!v^RlN_y?C=dpdQdR_H(}jn@Cjcp^M=CXf;Z;(h)u)d@gIe}UJ`ixhajf_ z9#7?lFi++e(OfxrT$&xESH`Ez4QFOT^4{^oP`UIIzGPPsV9xac?$wtAsmg)*c{erN z4VKAY37QSjTo`1PmJ!4KY`ks%;hus4mg~p{^Un-;0p^ET+iS4+Y27xE-$R_{jY+8C zU>k1`_~xe;`$0T*fSA@JnpkFjpd>7t_^Cre74N*jZF9 z%!{ao4-Ew$7Y!p^S%g0B%3e;Dio3GC7~$q3y))c#+{XwXqbr6H*wtym2&x6sYFB%wTYRnH8aU}A++#u6-(3_$R;>_F z$fj`YY;kp~zPsz)HDpVZ=`;?C7p~rq7rB+*UK;>*y3{w{_5d&Vz>b-m|b@!`CFj2sF_2o9Og6SIcJ5if@vUlKUtC6FVtw28Q0 zDmR3sG@n9q<=_bEImG=Wjl++(Wul3GBZ^^)%LWl|GTO;{N zWi_isCwe*xlC0aJG;fYVfp=R-bxA?z3D?5^k0Z2XQ!GfS9654`dOCC%o%;H;BN2P8qtU=RpLHuKWlbU7aR$ zeSh0>4A+=P`poLv%Rh(vj$wgy4|#)P>MLY^cTX=8IK8E(Fpt8eJP}jGHz4HxKCv7` z|4mred-fF%qEpy66n+-WF~3KA8WunQC}j4Mz|TJfIWk+Cz|X1N5Jt-UBAP1)Kht4b zeHW=xgp5GkS((r|We73UEX_aE(^)hW7pMgMtS<+Gl>_FR_)?oj8{hc0SaMud{w3Tl z2MJiX)l@3*Q=6LVAhB9qnOVTW&)45@=!m*IjQ!k_-6B4#%GstcC})G4{S8WT?xHk7 z%hh&3wr2*+h~jJS=>fi!j0l$RN(?`XO~cuVt*w#j+52E4h5K&qq=TseZkEHV2-V$L zRCUdZs74Ts3`MtS)C89E?AAKn+S}I(c zEAncbv306coUz$(>7BW$DG@HwB$$9pCvhu7e10%8yBvp0#Ir(T7A}GWE^#ZHA1?7Z zH@yaek)Trsm*{yAjHD|+7)e*B2`)WAhmTfgki!k9nJvj|swo5x3YnzYR8#tqfTlB3 zigVbM`bQcl>?omXeL$6h&!I037%315`$0DJT@sEMgSC73^>_O2jZ0jsGVXjV~{zO zI+$QKvv*fx&eFmhYyuzpn}ami^V}MU~9lPBntCSSXT311Nio(8vAgDXLW5kM0F1 z`-}9>JlE?`LuQF10EMW`>ACJwZ6m0gYl6yjMSF^h><0#LX$OotoE$$`al5-v-;n~M1!&?y5b^xOw1AEGM;P}tRQ z03}XF3gP>y0{A z$FAX(F7&p!w%T$U>?7wYwlB;f<+g)HD&7eD=DvH&3U8d3(dziKLp!`ydK-h2NUK3x z2fX$C4t+k|J>ac%G}pza`A*l{QnzY;d<{7pS}xLab-mHM)CM;Egr7QlqgKalciip) zefI%xY))(8R8!Zo(b8C5MP_hH>xVzq`5ji#%W?cU9{ky{8~AI3Yt;aHYscv+IvzpZ zZ+oHZZJo6&7dg+g$irJ!dK(;Y8XG>UCn*Pd7k4%~$cWail0S&54w^jAzk}~B*qtgZ zfL58pf_U^8RG@7~?8bUqqdg$L)VsHw;f?ERBm8s3+ky`XUCLeNb{t-4#2cw=Go3lK zw-HC|w!k%%K#KGx?u>!`HH}`X`-r#EXn{vKMzDs22CccSH`Z}yC*C;W7`T32{9#qI zZOg7AUr@cF+2A;lT64SJCZE%hRz_GWU2l8hNumk!e?$Gejefg=244Gh@dt^@-e!6S z=$fO0MGd@D*W1uQGNTR-uLZ~J`1=g4)%DJ_wHh{GRqI+Cnu2bSq7Hl*#ip%Uye2qe z)S;`|tZ@a5Yg%N^}{XVVorL5_afQU=*jYjucx9d;#!e?mpK(D;JpwC13Q4Wnte-P<GVAFMp_wWT4)0vub=%IqsVUrcCff_xQQn%g?769~cNUdo1fV2KObm+v zajeDtiJjAzfu9@g*;=A`x+9vum^Y8Xs*=hc*X&6{b7xr}FaT4!+iak-F;|_zD5|@9 z_m;KZcIafY8V=7e1wz$nlZHI%ZFUy0SMOw1H|F#P{)7ImZdj!H>m6(abgTZk0btab z>~H_iYQut6_gT9=^!5W&Y_QWYs9>hOJ~OU{(|5 zj3y~>!&3dxxSCld=uC44>u!#_01|XfbJ59JHIzDD)tX4dSXJwFGPI!Y5pN5%Od@x* z#;kAF9`#mft@-YO&WyL#HzydsP(`CvH!wJmJ6g4o1eqz$77zv1a$#T5MqQgF^X+Yo z-KE)s-9~G(;UA+kgz9u(-;Nn+z3O;t=%IhF;?FhP&Ck)y`x*RnyfJ#r67kR!!3sRW zo{YjtJl% zz7n8t0B!NIzof4Mu6>(6W3E~SZmp%C8FFCe=;!_s{HXME=O}*erJv>+{Mhs}yB0sk z>F16y{M_~AlcTnmXcqrn4mO9T{iUqCOIV)B;GufFU zj-i|k|9B(pqa$M8Y8uC|r8gb8@pkeJLYI(in1&JrbszBC^VWs@V1{U&(W*5%buxT& TGYkqJo}L*?zQBh^eY>lwPoHz@)cNaFow|S7+ZQidyoml6uJhZr(>gS3*6S^=Zuz}% zW!jro~y>E$A_tAE^ zqSi2dA2)HmtYtQ%tCjU`TmCU;*7kR-`KSyooO&UF~vfw_+=_U!3! zX~St*z3Uc-%iAWtBG*58_~ORaSNT@Q-+IWhyIZfa{QZH~-n!Q^o5r4w zSF?QIxZZ5Hoz}js0d7`nUb9&ZJg?zzMRWevsF|&dMO$lTqtI79E3gVE( zDpaLqb*e$fbXt%~9vxH`#?70b-vP-4=NmPzbpW=&q|RA&>geo^9flut&NpD3d~+ZA zb$o|t@&mKkj_(<-HG*!tVcp7V;OF)&tV>;PSMhq0My z$>z(?H!c%msQPWQX6-QIBF5&+FGnY2)?!<@jMeDL4s5F(Se0kgkow-mMr1Lzg}9O} zbkr7-CLmmVuxF<2KpP#&?#@|*`^(g!W@88Y4va2s3=CH1fW>UcJnGIx?+gEDX+!LH zYJJAJh(T^2-a$4T=BKsK@aBtjO?{s`>$=6v2(FH#jX{^jBQeloq&%lcw-!<xC&i*2E1n!g=>gFraJ6zOO>hpCi@5($X}DPv5&&ON1ryuJ}v!S&(_!l@j2Qu z@+;n>`-+wH711ZGBtiyL|L#ocH!$kq6F@G3)oC~wlBIZV-T({tODmSPV%*q>u_5N3 z!nyDyg>A8=k1H~Dqd}#bR-CE0o=_9zj#P>d3|5M8ajV}Z{W+xnC#)-;#3W9yZg*R? zpxbAC7e`*I4J)`qv4S7by|LZ@#(&^%yh}I{WK@|$mNKtj7~HUZZ>Djj5BZC@*{LLZ zVd7V}tyUc-ta=CzvLY1jd2I`oDw3t&)6k)KdO!!(eBEneMD2wqv=75=$Bp1{8y*iI zd{_~V3c_b=M*d#73U&RqRdeQ@TJLB$1q;l5*YNBDrjdq^!#koOZ#UVf?||!1^*O5l zyN``r9|n(6!sz`m8vH}>`@hHhK1uOblB}<&Qi)3mp-;&>G1J{sVPG_T&m`R4h)N*o z!!b$OD(gN^-}qYp4$h!It{mYLJU44j&De2tXI*FFi)l-vLY_O89RtpO4Ox~1g`4@Wr zW`D&0VBedsmVd8rJXmD9RmCm(#;4UE3I zj0UbxPg?eA-YTVp(741s$-e)pXJ59a{XYB5d`QTuGtb(>GsAn*1eYhO>T_-x{<0R)y?0=*iZy zyq_yek{bRW^^KR}346tOIC6f>k@FRfyiZTGmLs{{=a2M_52=JHcK@}$@ng;IC`3xL z`nN0W{*<0*9lKNGVz$E*8SPY2g%zo3W_`i%^k%maI8|E9QjMc7_!B{^qcr>dUoctC zqo*Q5r?mJQlU8kDxebCJScF57GjGmC=)IQ+_l3)cnt^8%srK@4<$Sl%V9^}=(Qq0o zVroQU;P>306OSK#V-E{%=q@iq^xkQ2is%I0x6?E@#sGvbScC=`D4>NpG8!kB#7xo0 z@9UUtTX`Iwex-@ULpzKeA|$Zm&glE@|Kufe@r{N%6 zXf~AhyC+jiwBlx4xSTUqIxDBAUXygdu+W9YYNCJ&=8|Wkm_|Y{;Fxw2w!nc%LyE_ z;oNN*2h5IR&NVFGzyca0QY+u+`c~bTJ8T5DWoRPp2GgQhG0=>?U8&wL<)2b$r5I<$ z!V&)PBr=~#)9d;MU!};`>G?+B8Fj2>Y*_|{zoVs$qL4ppToV`_%dGoY zl+^A9Mjb1sNFAoJsEO-I)O4gM9qX>H(}9AZRjf`#4T~v?SQ;7Y!|_U{`6SdDr#T&71AT4%`~D+XPTH@s$gt-|ykv2Mf{T}-_tKf@jBGi)kt zxEB4hiLIn0Y!uT!=hYAQQHjT^<}d(TSaO?O!y><8ik?(4ZZ-R=C+$zPs*-70rCpZ` z^|lx@GsYgakdNsgTgON1q%xG2DXcNy@tREcq~iKmDjY3V!}<|EidNycd#!y6S)sD( zgO91o9m&}@55?L45OMZR_y-)_7M@^K6i z_!1FYbQ!nHJIUwSr}cFbx~;aA?j-JSs{|&spVOGUDTVd_QcVxmbEQjspOHDZsM;mm zKSN=r<0(gWK$rMe6nFm;KS$iZqDulY?gw#YKPr?z=2AlW`Rjv$72oA%ys(Jg! z_xD-?C1ec`Y+-|F3S3D;K8AkkM|LuF|co_pxYDbBVnrP!HQ49<9*~PBXe-k zQToVR&~{EAiMf>MBYjND=pz|r_KaPBqzPFWxsE@FlUJH8ytyawVe=#=NhMLAO*J%F-Ibp4DMr-bqNDVT&!O#{o)PmT(KGs3 zlF>6V%DiISDk6ECep{iA@qrxP_H_(>tM`)oX}EV6aN!O`MQI)(Z*H;{6}_`St9L|2 z#gvzr@GG}j(!MFQwVOFBTZ~G9eE_;$SlFr;*j^obC~qIJrCBYh$sLyQVd*w)P9>R(#nlX}(YBN6?eNgkNW%e7lBBfDom5>s$y&Zk9Tjhs@lr(C=|Y0i?S zrDDI|{?Ccfh6saUla_lyTsQpUGkpi3UU)seiS7?#F`S$!&d6_*J5V&G)McydQjNv# zU;4h3+sk9#XKwh;j&Z&Wl>m{H^%a>rsN7rhjc3PNdE>dEZCl@Xc4(V7E|=6GO#ou4 zY}Aj#fPC_A8|4tdL&>bW^{-UJaY}qmzX>IJM{*u6u`O!wJlp{$hGb70u!KMQ?!g0% z=#JR@A>zzVv*P>8pU-x7PgVM5)-Fq=yrz>l1A1ZHurZX zAd<2h*al1Ly#-iGZo#AUHL5{W_$h_wo{wTtXy5$_%~1UmKMCvV{yXjz+fNro^B;8= zVU!PFSbA9Mxr@<&`*)x$)Nb<)bB2^R_1q;y%8N>qQrW^bmSd?w%sudQmRK8wUYDVL zVSstCBsqKgg6lCGYt%aqQUMtAv}u&#ZUBxNqH+Q470(EO#8I}g)uo~NC?{695~)6} zbVkyeD9-!~F?K?bAC`hl#LypLFd&u|kAunxY=*=Tq9s|@o%wl-a>T^ZS&F7d88fMcru>u?qq)27@VhLq(AE!!DNL68YHKXU$ zGwwOcy>P`1d;s9sI{sUd_=BNHK<0!nHiGVOEU;E*iIo9geHxHPJk%_ zMYuGvz~&8a@s^;a2R?R|4xjb%KNj%~X`> zf&#*2W*-AvfudXwh^a&Af%G{t(m%O;VnEmjp}qP_OVLf0;W)ce#oY-~u`ZDT`SfZ< zo{JzVvjQumqG+B&Raj0C_3xH96Xm1A3bvLfF4v0NGcfy|!&uX{nm-hOpNJBCMWP=U zTG#T#JyDKYqW8g+kYf-n%eb6x!1|n{Z{IO1z+&sRik|dQQ z%#vKb6XtqAJ}m`kC*KFIU@m00hwN`;2P(>($7zE&DeU^-0@7N9P&0MnHtCz`XF86= zb;EyJKr-Z^1?ipFLa}OEsq6iltS(A13kKNoAW|o!Ay2Y6YIVK%}oRg zUR0*@aTxd^5S0T12X{4r0AEms00sOB?SW1`$aSDQ=jMXHm+llP97UwnNBEUeI8o*#?7o7Y~B*XfUC>4^yK~TWNkfp|GUtdROL_b&k%!V()6U4 zka1YJzzq$g`;St(2}JnzBqF3BVSuzlSe1LwhGPM2Z;Gsbl=qL8VEG1Pym8R$VDW7P z4^0FRF%v+5u;WoYQ9*}@Ksr8FyZwu9cuksyk)i1_0YfzI)`9lTW=Tw&6T*6YW0Qi4@-6ekX`=*f^V%_UXg?qr~`F z2#ozgSR+XM@1?{OkSrA$1Egw@Oi7wTY(}=&RUE~07O@?&(>zXRn2mt>o|L#MU_giHy>NigK_; z%o|GH(i6~tEzuLjxS+4Z!Il^yvny5Hmw;3q*rMkV*qWy+2DaGMu>)IknSkKH_R2UH z_}(-TlyzYH2=MB~Lwiq*Cxc>Erw(AF08|5?%dzEkP>Hfg>Yli6_}PVtq)6D&ffJHRj|&L(PLQLsy(tKl$qi`(-2-TDA`t4r68(;2rw@Rp9PBi( zn+ec#af#O}Xh~=eeCI=4{zcGIEfX!p&acEuHy-wp27>L0y1G@vQE%oxTKYy#w>a*| zY#29KHLD#U*g+FxM&-tv{EbwO1h9JXjqLco z9flnQZGXqstp^VtoNYS$t-}^h?r8b56rL>6wVxEcT`@fji5!0|rAnpnS3kTxZ72db+&LMQbfdEZZ;94C<>uQ0 z7qg;cg|`v)R+o@71_U6OeYYP)JUU*B+Mhf2UV(cDluSkeo-a88v7rRNd6y^pRKyk%F%4&LsQxQtG2oNIV<6N)6> zHa?8oPw5Ci_sU`(Z~r?n1272fo}uHafV}!ba?p7PbY<|MqhG1{P+T{Bd;#I!eqoFV zekGsW_YuoR1;2kB^ZmF0zkdjFbi->3{AO}PT1fXTXl^3l_tLU`kt5(wg0LI}tnYOK z1{Vxu_Uoa7g@q!)?|U0phay<`5{ZRlzgStgDKkw)sCX}|_LZ>Ov8!CVzO*=xb8^Kv zS71or^ow9$Aj!{3NhW~n8tT2#{6b_F^Stp#1_pR%H3g-)|WeH~}-c~q$sd-I{w&cXzZ z7dp`>m4Z%J6c8ep_hki&a_B_N8%o}CjMqRX(G$h!ps&QClNbTBD^=WAf>a%JqURBG zI!IRxIr`pEeYNQ{om%JcSmT3ZOaPQY>ImRzXEBE@*V~f%&D#yaOxDQREoX%{{C!Xg2wCblTA(e`_Bg{c|zp!-dvz4_xFi;L&;kXNg97& z^h9B$^p&{3FRXQTrHXqQNY(lK^gQzS=je+0`|Rr2`TJ%(sWUl8|JCCQlBi&01P{O9 zE(-N+8rS}mY#s`qe$Zn%WZna9DC^80jO&J2QupUDkr{oD?kn}`>`y%?%a2tIP({}d$UxbK7dnDE;RCd^P@t~l&MZQ#KL zT=+#C_Ve^X4|MyJl2jD)pje0BZPHVRtEu#z~wDcpYb zA?z-!1vsQnr23=`9|<-`I}770k!yekxfv zf%i$y{w)67yg@ZyaJ5M&)k<*o$K&Me%lJ%-qIJwzn>A!E#d*9@HkpdF6pa1*X=|g< zQf4xu%vwoZJaJ8|i{pEZY#RESn2&0QHBxNU+0&S@Y6Je3 z>3&TOZ=Tf4gdab-7fA6ve+2POLwx6sCO+v0rlE7VJUY;_7cQQm6wWR?`XcUvWZV?H zo)~U#x~k)~qp=mIqgWkbdPKrrWgSS|efn*eIghG_7^{);3818}#OM74 z=*zBDaeo)2>gN6Ec{K0$F}h;&e(dVl&HGg`pw`Tw%8rT@3$(@>-rqa&tX~F&Bh2~f zS3hRFOEcqlQWp1wpOF1f4kk}Q2L`)n`lZibkL!k?dgjmeWiWljxjxAs_s7JlQRn(r ztkua%4fm*4R!vYl)|5$0K#p#>OwILWazk1?_X)6QB6EG)v~zt~VvlC}HskwpX8N*w zmzd|%Pcmk_SefM$3Il)bE4-T(ndQ55Cu`Pf5uCokqd>b^Wbte4zm{)6+LUdD^;E*= zg=|3}!x_#J$S?s%-kMz0ELJi1OOEzx8kK{#Q$t$W4x1{OL6+GXwqFD3&soSTYuN-; zu=K(=u>=E?1ITd1CI_}mXP-)99m1(qv`m_oXC!mZ9(Qy}?Yg3bcDa{RrD(=a5yhn7 z&y7Qo$o=y@RH>AI-VcB3LlMB?kBLe;drqB|yTe3lL3j9iR&=cJ=k-H<9cS--RH+nu z^Wo3Kg$Ysz=Fzjw(g>A;KfjJ!c|zp!ertiET;9aIq2w*c_4M400)IqL%tkV*KSPx` z{1KyJcBP8@7)aH@A9^0apAXR$gFo!**ukGW_E|x-W_2j9cyPGN_MMCs{oFVz`pF=0 z1n{F>LYeU@4fffXQCvWu%x7{O`3l5e7WsTBt{Z;x8IOE2Svb;CWyv1*`^2eHfzP6K zI#H>HLbb0G13o{)H|cC_3ixDlLmEi;b7*cNz-Oxt_+&{v!aWAKor8NayOw}G7YzAY z1@#DRfyev>-o=Wbo*B8efdY!LDUG)9Q79ZB2)?k@L^wQ#Iz!fymSam{byV=p!nG3+ z*14P`X?XK+65e!up2C$*!RR(jqurgu$+GCnW8OfkVZAP+scZ%G>Aq1HfY7gpAALm)2=!^5*WafNt z5;9tz>^zeKq)y>)qp#tJX`U*TLQMUD^zNYu-~iB66Vt|xg9XmjJ7deM@vtd;+W;PlTBCTR} zv07`GzCVxSQRtxSv0~KuabVPZnn!@GFVFL9^WUyPvga1#xd69Ci_7utCn@Dl+Esm| z??-Xn@Shh1-pv=)h_OG(F?Yp!=8i3fb6oy#%2TM3LQCmXi#{<3yaD9sta=IpXL3VY zSND6+uZcilZR)XtJuX7UFTfY)pyHx^QUGP``AWrzQ?Rp8GkBCg;N7(dcHWi5&K=9F zn{y7%ykbkpO@k6Ju|<-dI)#dW#vCkwz6yiG4D2C}(qPk-F{mC_bJA{IQCRb1S7OsI zmX(6UFXK!~1Mr8E06YfLx}-^pY*lR#>vHWH*S$}Q$K;6TmDZ4g7)aY>uh zyWJ)9&b^*0MbKLj$)sT2+)yNP+)<@UrEo_-tn-H=fWx{rD(S`!1=bO*1>OAHSkbY< zy0;DWb)3C#rb?yQn-A;WSC}Bx2^byL(b$)Qb-#sMc|zp!eouj-9M%!@hLX4RAvCZ~ z^u%n0riKql^*F2(V`z4ziu*?(RR`FR9%y|ht{Z-AK>)3!Ku3xy zO5V7OPGrOEXpm|hHFEqws#PFIXHip-Dw7-19J=3xCQSrVou4-ik`Q?Wp0?uKa==r6 zj}kCxc9<6`fJi6_+~aTYZdC*jotp$iHLQ)BX;=rW2AzpQrqdwP83Uf8#if0?w6NYO zfM$VO1IXrL&W<#6d3_4HU_B!iK1N%&YTXVF6$zq+i#*vB7Cqvu8jGU66eW!Jl9B-Z zX<8a7R#(zvRhB$V%-f;z$;FVz0VPsXWIwQK^GBp%3t<6DsTV0Tv!Oa3{oyFg$` zf=AK%MEeiowJAfL>L_{R{)E^x>SD*08+39~&4Ox8Cl={h3UYK7H3dsDxgpJ=`y^O& zY+y-3Qx zi%L2pqWIQCYe8S@C9LRJed}PTujA~!iz=03Z@zDRv@k*HXfXPeKbgjqZ~Y){i4Ng*ncyRB_({QgyyHJ&%0rzoaYXTeGWU z=UcO_MIEbNcQEsBnaHbU`D1mj$Fj93Mc@b?cJ9`q)T=a3HrwNnDlYu&%x7{~{4~U0 z*46%aTz7$NE$U<8NI?L}9`~!nsZqV{AI9v?OZBGO*NJ)C-vv238=LaBGr1uRr27#x zHxX|;cWY5v>XE~}abvE-o!Pa7&z-xqDD_&!?H1YsxBH`9=0)7@7t3e>_7HU)q*b7_ zhTN3WF8ij}A}`x(HJldPcHiu__)3@9=N_>YX<5zy0|#4{^ti@G<4p_LjzE~FbB?6K z2RFZG@uEcoAya=eK%5vCOEw)1pjA%0<7}+7@U3PdksM2{n0N#=*zYIqVB1p%XJhb# z(0!wF0~?Sj2GKNwEs3&Lvu&HSO{y~IHR|VMv7Om)YDhAuzCFr*XS6-+7f!w^$^wb~ zR2k2he$HV@SBkv5x?W%rqKJ`YSM*Xe|hvUdW1$6(%=_`Z~^DmnxNF zZ$3Z=$wkJN^=E+>P5gRM(? zl;fazA=?s&as%f{3O0xLmcYzHd&IPe5O2Jajymmb%M<-ABu94q?D-?X$)jpS^xm*qI=0 z1h}d7K@%_0#AMeb3JPx_byp4I3cjQdsM(Wr3p zhcTm%3pn{*kfXDoDL9$Q4Qc$`kD$4Uz{xE-OqY~5kG-Cp3nNn=hSXo&Gmz(fXK2=$N@*^Vp1iPw7oi4G!|?2x;f*Tr-} zCGZdiRqr&NRu_8Ubo{{Zk(UI?BslHNn z!W0MWsc;?kz98jVyilO`P%qw*aQZ;Xg%fn@fKOB2xij_7WCpObfqN;HHe4dKJBN>Z z@n}4f!cTv?94)g@WMpTB@ac3-#Wqa}$eTlPiUZ6$s8T6_*$?D9LlMA%yvIbPmnz3| zL~Frt;;pRcSn>N?hx$6s-jFJlVsAcvf2=S;$q>*yJ0TxXJ(Q6Z{^ocwI^|Sc4yd8{v zRRylsCRRz;QlPz168K_I@orTF+CTf6X1l?TU@&;&F%pa;zS=U<5?oSP!{Xs`(?ad{ zkitcr9VxUPHdrvX-f@r`MVQmGTWO6Y`pHC2i*rNYEX!HQdkB9Z&OH&LZhes4dl*gq5j99Gz_i^9DP+PjS4AP@h;rT6C#)Q!v%_RSV7Di zO5SoD&BFQ|R*0TB6s!;hUQVB~i|?}9$#Wfe zodIvt0F6@y(T9U;FsU`@u^d*Of;N-|9bb>@hM#%H#}EfGawO;>IpqGBm^CW&SaGUO zT2DLlSORi%RyPGbGPxm5ruzg~G!f{bJ*j$t;3ELC8DE$KKnC?O0Yfe-)8TvYI_x{` zO|ja*4gL!6ZbiVzHW6n$V0Ii2v7|I485Cq3zM`}x+X`!^0$Uce<$%;?I8##K<>rgZ zg&Ou*f9c;L4nZQYuB(metO5|uUrFd>M%?=i8(t5@C7Tfzt8|!w` zsW@?ddkPb&i#o-rbTzLN#S#I zC=x~3k1CY{kp1|)GZXoR|k)y}=A?mU){9od_;m4oxFg$~OBO!3f9QWtMr%@63+S7D`QjLRZQzsYv z135aonnK{2+>l1m{RUVx5d=<$sSTX<>X$i>{^8?tz;{Nc61ZEN!>R9;YW$Du37oR0 zc-JZdxvvrPcovHsiB)uPcTKSiaI=rZHNvJE6?nHz%k+`7u5Qd7#sT41UVXz}b4wg8 zye_{*Y$hw%rnEJe6joscrY}^>0wG_-`H@2C;op?lE2@ZBC_ubDI18z#R^%$x^Ox@` zg$J%lr31_Xj26PDNCn|l@83c|1x3qa|GhU?uTpKfr3&@rEOpYT@LFlUXC6|`#7hHZluDby8PiC@k zB-ka{h$ORt$>7PWsFX2H_ZQfw=%ehOszEQlG-ku+#}xCCg*5LMs$%Vb!yKP_#|Hali5K&%j9M48A|q~8%E!tqL;RJAKg zsG55@RpLQ8DVRxtn;VBBk$c~Js8T8KyC2-tha!MGyCy2>Y_h3va&SY;8%o}C?9RfyB94Ss zRrgX~NyL$2zcNY}k*rj4A48)$a6``{aPuL$V&H~djSOy*l&CHj^_+-&`}V;fTyg(w zDQI7Yp0B+ZlnmX0VaI z+pv1}nU)Z2MX8dt4%OgQ!j05kYLO~F^E6DrJ?nP1p6eXju$M#(vd@OOUK*Zm9co*( zKyHezSLY5_>FlN6y*>8{u)$vKho@$ia_T5!pNRrG)eV>XUbj=jC!HOh6m-m%-(Z`) zt5{L74|&jiG*Stdu?z&g>lTI6qKs9?pIwO7UL3CF2hvt~Tf4*6;tp*i@9hp(`c@Di zQGwqJPpo^jD71$>7Oemo&wAnVSDOv2M2fe3hs(Wg(C!Ak-S(E<;nY5>g~M$FuY;DR z>L${)Q`SWMu_}6D6>r&(Kd1Sh-A)64tqHsuFmr7`J;jTcAsKt;a4+02?|A{z$XUw6 z>lTM=d~h0TP^yP0F?|nr*7`^?*RGPoh^juCe0FpPdq>!vD$T1_nZkm2ypdNR4Q4l1 zcPv_#5=p&x-3j5eZ8qXRmxU){<77bT;DW9%3M~tl)vdYiKD4(M=PkFuHIzW!`X=s7 zf&Dd$KB{*lTcQdc*2~<3wsL z=!NSdPAjb}W3BYUGgD7eO}Oiyh3>jGYFE-AYM+sOkg6Q6r*D9+`8HV8z&G{6H4UVH z>f#JzaJ-JcPq13OaAU`+VO3bQZndE)cnz}tfe*{Enrt4Q363~*=&CjE9Kw7Mu*NfprO8eXhA?=Ja%VER>4>go>U>{R^7Y+6P5!I87($UB7;FxVCMzrO}{|Sxt8c z?o_FBgs0g-(Drw1-HO}(Z2K^l!?$L=&c3a^@MJ2<2tY}e6&e-+;#i6MGtb+05%{^b zGha(JPj_VV=ZfahSxr*e{Z?nzv4VN_4j6!~cF=6#WmADUhh9_R4s!sbHnP8?KdTK7Ry|_v znK2OHrr2QzmsDweW4Dc0tOa#ZCW^=o9EJ9HHI`i>HVhlcRKTpJ$~jF^-iBvJy>ThC zO3<0+9H#C3;4nzAEi1rFPOhQU{;JhPX3MHsualt#eMiC*sbvzmZ#Cv4vvxFGVzmzR zc6aB(m616?|Ai_#t-6EGfyCWr2kEDo;+zPgpjrX!E83`A^JKom4T-xnda&DQZ9e{E zId!2r-M7!gh_u@D!xi)}x>t$Dnls%m)5!Zce!AflJ!Z*?Xoz41jc3p?Ic! zE-Q+m_F8+D$mL-#XECQZ$>OzaVnZG6!)1<-L9=&+2A64jQ~2030Vs3ei;sP-y#yIU zUSrR>=Pw7hE})+`kOOmse(qg~p9kpYz!ZM&p`W)*RnoO&jR}{MgQ4clS>m)-EfWC6Pe1aso_8trdv>#=nffNQ7+O!^$uAHb{9Rj zi6dR&&dqL~l)4$0o=UVhCEm&^ZAi4wQoPb&eR8@j{sb-yh69%7hQ_^B$Sd23`WRe- z6+0=x67D|)9e%KP156tZZGn-D=LKMmH^ifYdK(#Q*7}EiB>xq6WADXY7Ad(q4UaXY z_uIl3z6=YTJ7gP-sOK7+GCa*ql!XUQiaa={F0#R5>g!iA^!jtj`DnEZk;lzp&g)TB zhls*uY~K{Ia4Gd>Sk!BF?|KD!2(e>Gmdrv4YW8(ed*P~>E6g0Na$2=Uw@&779}QvC QbsD#suE2?7U1IkC0}lHsrT_o{ diff --git a/docs/build/doctrees/utils/check_embeddings.doctree b/docs/build/doctrees/utils/check_embeddings.doctree index 76a641b7de50b2ea5b38305fb97d71f042caa42e..9b97fde60d0e6ce0d988cc74b25ddab1ee37229d 100644 GIT binary patch delta 3356 zcmb7GeQZ=!7Vo=E9qmltykY2olqrv?m43Ig18u;HpkkpIU{G8atT>eiuWw=6&P=Pt zt(~e=TE<8@qf`NDP_ygTu568nTLq(uArM84A>G|{X?IOF5;n`GWZh_t=iEE(>(n8u z|GazOx%Zsk`Fg+e-Wg$6x@Kg?GN1YS)UnL3T4BJK1>>!SaNh5LQQyYFmbMNF2K~DS zw>~^9!I_6`Ft2JAd&>r&-QWRbv75bVgM(E?aOIIa7_0Kot5jXW&e`At+dQbNUPKb# z>O8oRWrL1(E8M*6sC0So!mb>N{gQa;_|s$eFnl4Tol}qsp#Sj?*(rfG#Llp;GkhVh zPo#MLuayU-#o&9Y3}X3K=F5hFD~Fb2?n?s+$GaWXm z`|4+LD_9+TbFJD&3!+QqXeA$FIaVr=Z?zXjN~~-yx#Wch%6OmnRu{2r(D6OB($k2( zNQy&w&nfA*6JAO$rFc^Ad?lS1mI0K4?@6~b04IBE*nq%4jJm}vjvh{++z7wln=k#9 zBMl=`IV@kB1-Haq(j|cyw@P1gt>HX)}I_}C!hwood77RPLP+CkTYZWezI0vn&oo~n?5PTvAWNxfW1 z#KCsRAoVS^>jLvOH-GdOqpq^`JGSu9i3j;ZF=jK{1ss`1q+O}Zpj;Pue+|jD3+nT~^Fr;cb zo1^V&BpPlEZC4AUx~6*92G^=0?cO51vQ-Uh(bjM%qBf$H2paO;u7;Y`U^pCXFP})n zmaAiINCPq!J7mI)#SZ@jATzZ`M4uu(=Xi{*X2^$VizS5?w@R(%(2@eo3|)i1=qzY^ zIp6&@zKF&XE5je!4#1LU6}aai1;+bI+22HY z&zcA$GBobLpIss6#00u5!|38-c8L}*d{QlYQ?93}{l~oa&QbD;*FMLAyHOd=Lw@!M zVPUsmaZgimi{bOc^Kd5d8q0O?4_C~qedwo)&2jK~RVhwrUX?lcCw={a5L<~ObhDqW zaByzKg@%=--@`W1bwB$hE@D{CypJ51GOThO(AVoC)#3gM7UB0TEASGs`ZD%}(C;Gs z64r$FBc(2*`>HmGR0$qQ6_=Lhm(xO&z6@cK{E2=Ol@#N(J)GItdxTO76x6#SsEY@G z#Xb>IBBC>ZRd@)mTLA7K zmmdpFNF zW=Y-M!Cz}M1W<=YMp$bOYY{CJ4MrQALTb}CJQBm>Cy$PwW3u%BjUzLCc}~s}VoIDz z)(nHm#qd+6#M#L_8+2`QN-U;4@h+~S9q-~QreG4OzN&S!+N~Y?8S(8XSky!0N}t0uOsYf%Mtj;3!`v8Jh*=~ zz{l9xV#V3Ol$bGK`NlnPNp6^`lEp;>-rQJ;`wtv|TXM6(kt}W+u)@5Wr%8(&ON(5f z$H}e&&|>028DuQhY*Ooc|Yyi#zPUMWg?`0qx^vR(WgglVWEEPXnD>d72I8 z!wuZmZtJrd#DW1mFRjD6gFUdBLc6fTp@&WA?XZYV3FKM=mC~^y=BS9&1gvPxHT!q1 z>`E$fr4W(B4jS8nyJ-9}SO6O+f-~y30530lg``&~>NO(02Ji72UC|3dxF?hgQ!LVk z=o8$M<-ngp>)v^30dh3BFx9IksFH76F~I{8`gyNWb%O~L7w0o-uXg!Qc^{Pm4o_+1{(w5BQ7 zNb5`WX?#}yZ3TUUPYBhBb8D?=DzwnO+R=u+?FocGujW^2@y>h3|A_3bnMFiF_xmM@ zi=2s%d%Ozi+SSCuA(3geA1=oCisr!t^S=5URY5(xN0Bcq~E)ulg$JbiE;_qdF7kDKLyubx+3BP`BMhLwr{Md)zYaaZTPcPHZ_)7fV-OtrG vwKvo^_6Pd?e9+zKvj_UK=p3J#E)iuWoS6P1F~a0?Gx=*+T&IRdW_H5gDuFdJ diff --git a/docs/build/html/_sources/examples.rst.txt b/docs/build/html/_sources/examples.rst.txt index b7bc948d..8d39f537 100644 --- a/docs/build/html/_sources/examples.rst.txt +++ b/docs/build/html/_sources/examples.rst.txt @@ -8,7 +8,11 @@ Demo / Sample Code After following the "Getting Started" steps below, the Team Communication Toolkit can be imported at the top of any Python script. We have provided a simple example file, "featurize.py", and a demo notebook, "demo.ipynb," under our `examples folder `_ on GitHub. -You can also `access our demo notebook on Google Colab `_, where you can make a copy and run it on your own. +We also have demos available on Google Colab that you can copy and run on your own: + +- `Demo 1: Overview of Team Communication Toolkit and 3 Levels of Features `_ + +- `Demo 2: Sample Analysis with the Group Affect and Performance Corpus `_ Finally, this page will walk you through a case study, highlighting top use cases and considerations when using the toolkit. diff --git a/docs/build/html/_sources/index.rst.txt b/docs/build/html/_sources/index.rst.txt index 9e4be9bf..4e345e2b 100644 --- a/docs/build/html/_sources/index.rst.txt +++ b/docs/build/html/_sources/index.rst.txt @@ -150,10 +150,10 @@ Use the Table of Contents below to learn more about our tool. We recommend that intro basics - feature_builder + examples features/index features_conceptual/index - examples + feature_builder utils/index Indices and Tables diff --git a/docs/build/html/examples.html b/docs/build/html/examples.html index f91818c9..f7ce3f08 100644 --- a/docs/build/html/examples.html +++ b/docs/build/html/examples.html @@ -21,8 +21,8 @@ - - + + @@ -47,10 +47,7 @@

Contents:

  • Introduction
  • -
  • The Basics
  • -
  • feature_builder module
  • -
  • Features: Technical Documentation
  • -
  • Features: Conceptual Documentation
  • +
  • The Basics (Get Started Here!)
  • Worked Example @@ -107,7 +107,11 @@

    Demo / Sample Code

    After following the “Getting Started” steps below, the Team Communication Toolkit can be imported at the top of any Python script. We have provided a simple example file, “featurize.py”, and a demo notebook, “demo.ipynb,” under our examples folder on GitHub.

    -

    You can also access our demo notebook on Google Colab, where you can make a copy and run it on your own.

    +

    We also have demos available on Google Colab that you can copy and run on your own:

    +

    Finally, this page will walk you through a case study, highlighting top use cases and considerations when using the toolkit.

    @@ -459,8 +463,8 @@

    Feature Column Names

    Feature Documentation

    @@ -157,7 +157,7 @@

    Our Team

    diff --git a/docs/build/html/objects.inv b/docs/build/html/objects.inv index 3d088974a47c3dd22f4bfc4065e24a08dcc82c0a..afee53e1eb50dd0993a310b0f234042f559abf5a 100644 GIT binary patch delta 4221 zcmV-@5Q6WGBCH~il7GOKak^^hcaz*M*dBYGlV5P8FvOc=Pn$Sr4=j&6$y!**nthp`gMV8V4@=<6?Cb}d1#QQg zc$-yq6CaZ%F1InSj#-cotlF_y)Iv%d8b4;uJ}#?lmlZUhh2dDSV^t=su7%ZtW)|R@ zKCpQkt%ho@S-u_XV;0!9X4N@;tbVhhb(ZML#-~~TtjoAQQ4 zZILutS&X*f@PA?412j9`v6)dH%PKtsvV{*RE5I^GMGpC%N*rZ$IMgBo(1pam@`lkv zd?sYVs)lAo^Msdg$aWWR6yY{$c$hT?q6U>_bppm_@U5osANb|63zKx4h)Q#7Z*E*> zx(TKsCuI#)9@p6+%W0Ll>*HLaw#dGT~_~Aczb0dQ8#>Rws6Xe-r5_|iplO~8Suzy2C>ooX+9$+wlu>k5Uu2@p;icHj` ze+mk!xhpKJ%H4d3GmbQQf}zkkTu!v%MDp=7Rb(@FH7{euMY-F9TK1=Zmc6OKQC_C; z%Vsa)O#QpSJ2)=u?$r)?v8t18pW@H!yAQ6i__(H!@ZkoA$zxf`8j$NCRawC3Q!h!% zr+?yjy}mn}<5=bycq4oX#NRB4pu0^lVNq9OdJWyJVLQ(^=45nHxn>njWRlU{Ok!aN z%tXg|EgyWq{D`k$8c3bwM00!T|F*0a22L?nqX=Wu6lVAhOs@yXtCnEc&`Ly<2U?^{ z;3qkwMclCO%_8Vvcs4E~&JSPw%>*Ju5Py(Bo3dJlN34#~CfQH=HlIl#=a~g*c&>B< z7lG&FL&}a~C1iPmxF`#@TY@GpDTJi-0p|3jdaj^oc*v48OXBBQy-Zsl_Z6)fbXmw- z1RsJezIJ!a*<$dI`*I<4j@Q!V2c}`&w7(oL2-SEm#Kx0R~U5R`Bq z1jgH(C3~9ZF8eHeH?Wvf(`>uVpcVq#P^ZGyPkBx^Ihz5H7daMXRy^V7K&C0US`FRR zu9g`Dd@VBy$&zxr5_>s;l2PTI0 z1)=4<&fH=5G>-4hCNDQ)hYOJTfLhS}sgtG!HhHqeR95()mz`V5L_~0B2 zNq>1bwhddqpAjtHRt!S2B6(T_bk_3s`t!G)JkBNCPlR#&%kK^=&V@f%zZ5}VE8q|{ zvtgDGe85&d!gEo@|NXHt4%aqWUcce7{H}m-wk__t_oq+ILgr^n#u^$NSU9?3q8Hx> zoIo(uFqyIpsOxO)v(drbZEL4%X$2QC6>|M@@?~7UT9dOK5-Y;&S$xXW%bqiFu0ca+Y)}g)gHw<9`d2 z7coaWt9>~$&@+J-vBYym@gnvd%R1{;6n|WJ>=V0{8(PCBy+FM{M9!*O9w0cyEqCjM z-E)ubwUYN7cRgg*0`{Cxo6aV?tl9RJhL>t7atrchncA%%nHY4ptJsb2A1Q0Dt^HzUqF@o}l04?V+e+$gN!+%!EcU`4Nc9eyZmbgl=26 zJ@6S(9FQp=&%hgEk}Q2bi27`o8Uu9oHVd%0H-Mf{dmbKg>G1hLab7;MD&cpMHZ5P` z=Cf|BT*Nt%NqUgk59W)BY#~RdMg+xUGtz-ZO>0d6aLU<+_S-r4waFy>wOVZRP9PA5T=s)UbH+#BJ- zXqhHha3-}Pa+V3=fx4PNpZzs06B7MGWQvd=>pdgyq{OS=SVO*wGvg`womK2#uT|xo zZdh)p13>^_e9TS57=NBo;k(o92t!=+Q>XZBhS>&ynb%nhp>aUd0;u;t5RE}pGVyvV= zgyt}b@r%xr>c>_aO&YVJ4)Iz`C3hnA%G}Bi6Pp^6lcz=^HGh&gH$355-0J(v6Ryx# z2E%O5m-EJ)XvDi265(f;c*VX`ex+FZp8GWUMMF=yhwtxJCh7`6SFhO|qJdJR9Y`T8beC;C7qG1M&7aVrQ#)L+9SinxiS4}T_*KH`y4 z*o1NRHxtp>#eWD2Ve-gF8!_PVnMERnOjYc?MGVOGMj^ofFcNL0&&6Op{6{QR6I(t8 zhyjjI_Yo;%s>(Yxn5xK;s{O*{uVl@VeZfy8ked>sFc{wDfbM;B&jIgvoR6Row%ypH zeJ&#WRXBo!m{izvaTt;7oi&01m?Yun*D%Uyk6)26xPNJmDHWGlftWeJ-qnzdi8KS8ec#4Y~_JPL7>s%+OYWeRx@DLA~khjLmc z@~C#?{X)~kZe(qq1q?v<(a3LnGw*s#MX8)Vx+Nq*f9F51oa0ak3H9Dj8ki<~*g+*} z#)mO0&;eDD;Yj!i#J!Hqd)wupwEQvU5Dk}+upeO#ZpHZ)VEEQ%FuCw&B1Ol$7H?j? z`hWQ0uj|($^$+d`laJj7H_G1KQ3PkX*fsl*9lEr%=u>xR_M=Gil6-5aybCdrrkB@= z{@bPERO*%65RD?+QFQb5t9Q3|>(@Aee*ZQ^p-FcnBCY2_NnDXrh|Z-ai9hpPax0tQ zZp=kZC=2oCkQmtOnlGt4eeDTq(ttlirjsuX7k^i90(OM-r9oc?sh{suDe_55g-lbP z@11VXsAL*Jz7AOq=HW8Ll>TjqOSZ4WDVkSzCGY0+b%^W7G?&BH=*!oqlmA6-w?lbB zy4>nVDu%bDLl%S~I+F%LQf|q6E=axzL7pW9Q5*a4HfYHpDEWp5iC=x@JL-6in`i0+ z6n}brg$IkC?~QmZ?|**Pr9?tscl85qy`L!H*spp4Y@gBR^mnH! zttFSinv5UpmK>w(xP=&Tgt0FTYJF<&V)9Oc1{2<5TRc;U5ww@1bk z)@Px1`#qDx)-_aMTl80m*JYXCXN^>aSvxDt8XUT$_!$Y2Aebw-2rR)k|AiMNOMlsj z#DflJfH9d|3o$hA0S}EkM0eBczwdvb06)`K^kqd5>#9HL!b9ZZwSS0RK>eKP1&LI= zyhyCF>e8YP!w6l_Fl7>l7N`s?1CABBSW$|f#f(!{T}mYMji3bvA!Ot@K1F>-ABBkX zL2?X1f*QX?c388LX;F`1L^vE>Jca{%NA7jy4%11TPH@u(O7L!^Q83ato*<&}LSv#uruPu{Xl3ZGV^RHR8o zJx?&ca>r6r%`>7Y)g}cIkFl_LD!^+;RI4#jevep$<%p)HlBw~O%J-u?ZhwP>SX09( zzX=lqs?{hMmD@-NMp7^u*ro(s$}klezrH**d(hN|F+DuG3FVW z)(6re{|gN4S6JxgrN@G|6;F&56f>CP8;$&2Sr}g1wSmHE`!;y|7cdu#09So-G$7eA zp*#MY#%M)=Bddmp$Awr7=zr%$qQDhTj1&|zD#Rl|KMxuMu6S}JlOu^_M}^omRqrWA z=LJ5V;Xb{H@pK!Rf&n8{it-crv*BC!e4ur_PN#aLz6b1xt*IK~KgDX3gb%$=JK%c4 zX;H5cfkURJ9Vng9_&#G?edUCHVO?@V_^@km#M0AHeVb;U>t@8#(@s#W$kgn|Rxd^_ zty$`h8&d?))vQtOQDKWJP35-nP^N9p$iK)|&wIOX4*5#vMn940 z%FO>D|9(G0B{{8Y@+*!MhIpIoX%pw{f#q>0SqlqUvoF(gaDU6NkF$?m6RXY}oT1aU_u45Av>B@kn;${ z98s_ahPHcmwWw15I?*IC0++cqg&(_OhZ1@oOdh-g@~kt^_blBpy!ax^U1ph`)v@@I z!Zcnqtba&Y{Hx0x1yDoEiftLQCzufn@Qi-cNm)5e!X(`mqSCxh^b9_?iCNBNx0}_X zs}7WFhX!6$)L#%=JfV5g=Con)$D4SlG*LMBAdCZc^NA%%H1B+vOoW`>`euZ@-mHI zHhU3g>fZ(4!Esr4uXf0bRh?}69DiBgeRP$@$2En74>vGO9?MGBfLsTu$^u58dP!0~ z6@SO;_1)PV$1=~r8{tbJ{$@c0-ED#ii@F-qYv^tb+j+h*C!>qXHLGYMlZ@_W5(_(E zCOXb*`QQWQM|=g-KAb){2Wwi{CSRJEHvY+&AzK}r9GYiu2T;;jEd;iqPKB+X^PFySHUl6paxBWMc)~A%OjB^R8oH}p zEi(xCT4ofICFOP{^yn$50UN;Ew10Un;)u-Sg`5h?@;p1%Y(Bh0`FA!W+Hp_o`S5bS zueE{ha6c#Hd|)tiY*^)4Bs~@I2tiN*;rom&{Jkxk`OqNsSQaT1nLAx|d0^n1&IK-Z zVJfy|6`zV@!9hOIx$2o`TE1|eCIJTC$|Yx#Tq`P)t&=aTIw!Z`lrcZU_{!XK<(ilDC*aEO}O zFv|x%U@ITtxv1j*{#Y4@Ynv>u-||>~S3o%17Wdry)2C)3^NS^84Gj(~99=Qdi|+$Y zAed^HOj!ohb+-1!=-}?R$$2J^>qD;dfBJgEdF36A=-0W1v`;*#JA++ccjBdX4Pi3< z47?L+r9TONA+y9$xL0M7x`*BS@UP6SZX^7{2HBy`Yp_cCrm^MEUD&KwVozBlpuuPD zSMbeg2mD6|>vF~@tJl(_rbQZyaeJF3v_E%oIs42r@Rzg1JjHf7OS+Z9*U_8te}&15 zn4_K5zML88nZS!!;yI&u5qpkhopmdUKQ27>iQUQ#t>Keipk5#%XH_i^5S-$cyY<5E zxkvX}$$N>r9x`hIdrqiLXOmslZ2L;XYqb=)1^K#6?beS>47%G@Y)2dRN=?SD3clj5 z%T3;8MfS=~bZ#KMI!l$C=u380f7gX~*DQm`2WJ;d=TAs`!EEBBpMiHmt+=XwQL|*& zS2R_br583s?Uc~h=x(Y9^iNt=w}%7eI}i{4m8ZXlvaY2lt@vSiz6zGHh$+T*z^;=6Ijaj4c8)80hCmf95NKb3r!x zV(0mg{2V0TpX-YMvQ8izm84|+bZFME!|I*X6mfJ?ORV>UP`hwY9~xrl$*9MQi5mf8 zNp-jrV3gMua+DYmG?oGxt)J0NL_brIqPtBfk0>mGuWbU)i#?pIJ`=mUgN`>~m+5Y} zUI2V6zM_54o}u65?V+e+f5@#}9n6GAG5PU=%6@^rHlbczxB#Hy0Bk|7pIe;Nmar}Deh!&VYEyWEI5-|5jo2Q@%UR! zpwIr6mI;Y|B{D@wkoBIC_u_9=FsB=q8=?TF2#*h-Y4XF6L?R;^e~|o#Ok@YSQjfer{qxJzWh(n!xMWV<&M285@%%`~?oLXQzaWde zQ?stH_c#5O5?YYr0-nn8EZvWlG>Fg~CMSM5cvAh?YNJVGR@5P0YpLW;q+XfZ-(g}? zLvr%eNTfy*=Y}U-i<@xYc)}I>GGCa@`P$r=6ODK`Ln8d_e-f|Q6Xn-%wePe~lV2+I zlzWzvTbZaU4CZMn@TnO}#y+492V>{prpwG3qt^z~+mUh@I%8mc&rA zP{-{P6j6Uck|^RPl0N*IK>CPBMqv}i+22e=XBQ(VgvlcxI>dm-rwNG^GF7oR3Nawp zyM6=%z(};!e=!$>^;jOUR84I8fF1@oK6gi?kf|!~paN2>OVeZP@4OZEld#V0o< zL{~7p%K_c{PMrhZ@t_?+A#A&`hwfZN_)BU82QjIzC)O|`*V|+S129R#PnKbn(;kc> zVQ|wN$B7Nh2G4s)!~tWnVJ{_NRIX=>2nOIGaWtU)f7}q!mAsJst?MANdV8Os5GIdy zs~^L+Zrc-0#l%x@-(zs*4RN9>*kI#@aU4v)PfAn;6U;uvg+bysCW)*G#(>;>BZiuZ8n_FGu}ruLMgp*w73x`Dl+(OaLNpZv zPjPX>e?IUyA@;sr9Vz->v_=yCq-VeZIZ& zMx-HJ!;u>U*VCfGAdNqc^aYEP!>$Q7IAS$NR5m5<3X!65njMx+4Z4DKPA?jb$uJ1* zsB?f$mF;?_Od%g21&3GnMo#NQ9@UP#UqG7Je~qk7v48>S{uucW-=w=9Q&B3Xk8TM` z(EswESI%)LgoJwUCk;%KJ?x;8G~?r#73hE}$Z(AM1ma%D=DqE5P+I-~afpV?NZ3y> z2e;x(2rztaGnicX(~6?wU5j_3-hBG_*Y(dL^>^+ElTY17Gs@oG>jP)G*fsl*9lEr% zVCZvq&-9Z>^OAgTsk}chk*1f|iT>zPaVqtiYKTUW?I^nW`px^>yYzXf>JALg5YSMt;MUzbp7=M>z z0(OM-r9oc@sbB6?De_rLg-lbPyq#{(sAL*Jz71Ip=HUXtl>TjqOSW&rX_hy4CGY0+ z=MdMAX)cGY(U-4JC;yAwZin*fa=F!yN(}EWhb#y~bS4dgq}-AZT#$Sff;>wIqBi#7 zZP1cIQ1T6r_`dnVcgpb^H_xF5D1Qv`Zqo@8$@?ME!P5ng{kuA0CPSg;lF7USi)25W z`l8NcMpemR{ibB$%>7eH^5v-@r!L;HK_ZM-eIm|dy{{8uG8H;5{=UsxB*WYe$tauf zL7OHRb@Xz>7Dr0f&qo%m`ID05jyonJelx7EqTwhSgN`~A)@e=O-W%~+-hch7ONoTO z?&=5JdOuOXv0wE9*gm7r>F-V=T1zg2H5oq)EjdQnaSJix2xDIw)cVxk#pIm?4JN$B z#*f?a)JVm#;)^ks@WN~V){TrOtj|L2_IoCWt!t>jw&<_juFEpN&l;%;vvyXPH8^xh z@iP)4K`>Wv5mf8YN=0e+^f=*x;A z)>VJfg@?$+YyS|tfciPn3lgb#d68IU)ulxph7r1;Vag;9El?R)1{^DLv7!_|iy5b^ zx|B%h8$k;ULdeK*e2)5zJ_-@%e&iT}1T}t(?677f)1n^3h;qCUjenQR8`G>rZX|Of z71tT;_yQZRA->RNB{L%>GZLtdkf&^$W6KW&=K#nLB<9}Z22woY;!!XDyGR4)6<&LGMnrB2)s!a+a9%EtgRDjoxs8(a5{2s9g z%MndYB~#-mmG4J)+l%V$3r#tq-I{{#O{-udvX~OOFL_E1noBC}uFnHyZi5vM{{1 zYXgPT_HFR^FJLYf0j~PwXh5=KLU;T(jnRq#M^+6Hj|;IF(0|X1M1d=w7%3=bRES4_ zejYRiT=C>cCPxyo!(Q7&P#7R!+m-YContents:

    diff --git a/docs/build/html/search.html b/docs/build/html/search.html index ee779a2a..55b7894e 100644 --- a/docs/build/html/search.html +++ b/docs/build/html/search.html @@ -47,11 +47,11 @@

    Contents:

    diff --git a/docs/build/html/searchindex.js b/docs/build/html/searchindex.js index 9bd2bcfc..2410d5e8 100644 --- a/docs/build/html/searchindex.js +++ b/docs/build/html/searchindex.js @@ -1 +1 @@ -Search.setIndex({"alltitles": {"A Light-Touch, One-Function Package": [[0, "a-light-touch-one-function-package"]], "Additional FeatureBuilder Considerations": [[1, "additional-featurebuilder-considerations"]], "Advanced Configuration Columns": [[1, "advanced-configuration-columns"]], "Basic Input Columns": [[1, "basic-input-columns"]], "Certainty": [[30, null]], "Citation": [[29, "citation"], [30, "citation"], [31, "citation"], [32, "citation"], [33, "citation"], [34, "citation"], [35, "citation"], [36, "citation"], [37, "citation"], [38, "citation"], [40, "citation"], [41, "citation"], [42, "citation"], [43, "citation"], [44, "citation"], [45, "citation"], [46, "citation"], [47, "citation"], [48, "citation"], [49, "citation"], [50, "citation"], [51, "citation"], [52, "citation"], [53, "citation"], [54, "citation"], [55, "citation"], [56, "citation"], [57, "citation"], [58, "citation"], [59, "citation"], [60, "citation"]], "Configuring the FeatureBuilder": [[1, "configuring-the-featurebuilder"]], "Content Word Accommodation": [[31, null]], "Contents:": [[61, null]], "Conversation Parameters": [[1, "conversation-parameters"]], "Conversation-Level Features": [[11, "conversation-level-features"], [39, "conversation-level-features"]], "Conversational Repair": [[32, null]], "Customizable Parameters": [[0, "customizable-parameters"]], "Dale-Chall Score": [[33, null]], "Declaring a FeatureBuilder": [[61, "declaring-a-featurebuilder"]], "Demo / Sample Code": [[0, "demo-sample-code"], [1, "demo-sample-code"]], "Discursive Diversity": [[34, null]], "Example:": [[41, "example"]], "FEATURE NAME": [[29, null]], "Feature Column Names": [[1, "feature-column-names"], [61, "feature-column-names"]], "Feature Documentation": [[62, "feature-documentation"]], "Feature Information": [[1, "feature-information"], [61, "feature-information"]], "Features: Conceptual Documentation": [[39, null]], "Features: Technical Documentation": [[11, null]], "Forward Flow": [[35, null]], "Function Word Accommodation": [[36, null]], "Generating Features: Utterance-, Speaker-, and Conversation-Level": [[62, "generating-features-utterance-speaker-and-conversation-level"]], "Getting Started": [[1, "getting-started"], [61, "getting-started"], [62, "getting-started"]], "Gini Coefficient": [[37, null]], "Hedge": [[38, null]], "High*Level Intuition": [[54, "high-level-intuition"]], "High-Level Intuition": [[29, "high-level-intuition"], [30, "high-level-intuition"], [31, "high-level-intuition"], [32, "high-level-intuition"], [33, "high-level-intuition"], [34, "high-level-intuition"], [35, "high-level-intuition"], [36, "high-level-intuition"], [37, "high-level-intuition"], [38, "high-level-intuition"], [40, "high-level-intuition"], [41, "high-level-intuition"], [42, "high-level-intuition"], [43, "high-level-intuition"], [44, "high-level-intuition"], [45, "high-level-intuition"], [46, "high-level-intuition"], [47, "high-level-intuition"], [48, "high-level-intuition"], [49, "high-level-intuition"], [50, "high-level-intuition"], [51, "high-level-intuition"], [52, "high-level-intuition"], [53, "high-level-intuition"], [55, "high-level-intuition"], [56, "high-level-intuition"], [57, "high-level-intuition"], [58, "high-level-intuition"], [59, "high-level-intuition"], [60, "high-level-intuition"]], "Implementation": [[32, "implementation"], [42, "implementation"], [52, "implementation"], [54, "implementation"]], "Implementation Basics": [[29, "implementation-basics"], [30, "implementation-basics"], [31, "implementation-basics"], [33, "implementation-basics"], [34, "implementation-basics"], [35, "implementation-basics"], [36, "implementation-basics"], [37, "implementation-basics"], [38, "implementation-basics"], [40, "implementation-basics"], [41, "implementation-basics"], [43, "implementation-basics"], [44, "implementation-basics"], [45, "implementation-basics"], [46, "implementation-basics"], [47, "implementation-basics"], [48, "implementation-basics"], [49, "implementation-basics"], [50, "implementation-basics"], [51, "implementation-basics"], [53, "implementation-basics"], [55, "implementation-basics"], [56, "implementation-basics"], [57, "implementation-basics"], [58, "implementation-basics"], [59, "implementation-basics"], [60, "implementation-basics"]], "Implementation Notes/Caveats": [[29, "implementation-notes-caveats"], [30, "implementation-notes-caveats"], [31, "implementation-notes-caveats"], [33, "implementation-notes-caveats"], [34, "implementation-notes-caveats"], [35, "implementation-notes-caveats"], [36, "implementation-notes-caveats"], [38, "implementation-notes-caveats"], [40, "implementation-notes-caveats"], [41, "implementation-notes-caveats"], [43, "implementation-notes-caveats"], [44, "implementation-notes-caveats"], [45, "implementation-notes-caveats"], [46, "implementation-notes-caveats"], [47, "implementation-notes-caveats"], [48, "implementation-notes-caveats"], [49, "implementation-notes-caveats"], [50, "implementation-notes-caveats"], [51, "implementation-notes-caveats"], [53, "implementation-notes-caveats"], [55, "implementation-notes-caveats"], [56, "implementation-notes-caveats"], [57, "implementation-notes-caveats"], [58, "implementation-notes-caveats"], [59, "implementation-notes-caveats"]], "Import Recommendations: Virtual Environment and Pip": [[1, "import-recommendations-virtual-environment-and-pip"], [61, "import-recommendations-virtual-environment-and-pip"]], "Importing the Package": [[1, "importing-the-package"]], "Indices and Tables": [[61, "indices-and-tables"]], "Information Diversity": [[40, null]], "Information Exchange": [[41, null]], "Input File": [[34, "id2"]], "Inspecting Generated Features": [[1, "inspecting-generated-features"], [61, "inspecting-generated-features"]], "Interpretation:": [[41, "interpretation"]], "Interpreting the Feature": [[29, "interpreting-the-feature"], [30, "interpreting-the-feature"], [31, "interpreting-the-feature"], [32, "interpreting-the-feature"], [33, "interpreting-the-feature"], [34, "interpreting-the-feature"], [35, "interpreting-the-feature"], [36, "interpreting-the-feature"], [37, "interpreting-the-feature"], [38, "interpreting-the-feature"], [40, "interpreting-the-feature"], [41, "interpreting-the-feature"], [42, "interpreting-the-feature"], [43, "interpreting-the-feature"], [44, "interpreting-the-feature"], [45, "interpreting-the-feature"], [46, "interpreting-the-feature"], [47, "interpreting-the-feature"], [48, "interpreting-the-feature"], [49, "interpreting-the-feature"], [50, "interpreting-the-feature"], [51, "interpreting-the-feature"], [52, "interpreting-the-feature"], [53, "interpreting-the-feature"], [54, "interpreting-the-feature"], [55, "interpreting-the-feature"], [56, "interpreting-the-feature"], [57, "interpreting-the-feature"], [58, "interpreting-the-feature"], [59, "interpreting-the-feature"], [60, "interpreting-the-feature"]], "Introduction": [[62, null]], "Key Assumptions and Parameters": [[0, "key-assumptions-and-parameters"]], "Linguistic Inquiry and Word Count (LIWC) and Other Lexicons": [[42, null]], "Message Length": [[43, null]], "Message Quantity": [[44, null]], "Mimicry (BERT)": [[45, null]], "Motivation": [[62, "motivation"]], "Moving Mimicry": [[46, null]], "Named Entity Recognition": [[47, null]], "Named Entity Training Examples": [[47, "id2"]], "Online Discussion Tags": [[48, null]], "Other Utilities": [[69, "other-utilities"]], "Ouput File": [[34, "id3"]], "Our Team": [[62, "our-team"]], "Output File": [[30, "id2"], [35, "id2"], [45, "id2"], [46, "id2"], [47, "id3"], [51, "id1"]], "Output File Naming Details": [[1, "output-file-naming-details"]], "Package Assumptions": [[0, "package-assumptions"]], "Politeness Strategies": [[50, null]], "Politeness/Receptiveness Markers": [[49, null]], "Positivity Z-Score": [[52, null]], "Proportion of First Person Pronouns": [[53, null]], "Question (Naive)": [[54, null]], "Related Features": [[29, "related-features"], [30, "related-features"], [31, "related-features"], [32, "related-features"], [33, "related-features"], [34, "related-features"], [35, "related-features"], [36, "related-features"], [37, "related-features"], [38, "related-features"], [40, "related-features"], [41, "related-features"], [42, "related-features"], [43, "related-features"], [44, "related-features"], [45, "related-features"], [46, "related-features"], [47, "related-features"], [48, "related-features"], [49, "related-features"], [50, "related-features"], [51, "related-features"], [52, "related-features"], [53, "related-features"], [54, "related-features"], [55, "related-features"], [56, "related-features"], [57, "related-features"], [58, "related-features"], [59, "related-features"], [60, "related-features"]], "Sentiment (RoBERTa)": [[51, null]], "Speaker Turn Counts": [[59, "id2"]], "Speaker- (User) Level Features": [[11, "speaker-user-level-features"]], "Table of Contents": [[61, "table-of-contents"]], "Team Burstiness": [[55, null]], "Textblob Polarity": [[56, null]], "Textblob Subjectivity": [[57, null]], "The Basics": [[0, null]], "The FeatureBuilder": [[62, "the-featurebuilder"]], "The Team Communication Toolkit": [[61, null]], "Time Difference": [[58, null]], "Troubleshooting": [[1, "troubleshooting"], [61, "troubleshooting"]], "Turn Taking Index": [[59, null]], "Turns": [[1, "turns"]], "Using the Package": [[61, "using-the-package"]], "Utilities": [[69, null]], "Utterance- (Chat) Level Features": [[11, "utterance-chat-level-features"], [39, "utterance-chat-level-features"]], "Vector Directory": [[1, "vector-directory"]], "Walkthrough: Running the FeatureBuilder on Your Data": [[1, "walkthrough-running-the-featurebuilder-on-your-data"]], "Word Type-Token Ratio": [[60, null]], "Worked Example": [[1, null]], "assign_chunk_nums module": [[63, null]], "basic_features module": [[3, null]], "burstiness module": [[4, null]], "calculate_chat_level_features module": [[64, null]], "calculate_conversation_level_features module": [[65, null]], "calculate_user_level_features module": [[66, null]], "certainty module": [[5, null]], "check_embeddings module": [[67, null]], "discursive_diversity module": [[6, null]], "feature_builder module": [[2, null]], "fflow module": [[7, null]], "get_all_DD_features module": [[8, null]], "get_user_network module": [[9, null]], "gini_coefficient module": [[68, null]], "hedge module": [[10, null]], "info_exchange_zscore module": [[12, null]], "information_diversity module": [[13, null]], "lexical_features_v2 module": [[14, null]], "named_entity_recognition_features module": [[15, null]], "other_lexical_features module": [[16, null]], "politeness_features module": [[17, null]], "politeness_v2 module": [[18, null]], "politeness_v2_helper module": [[19, null]], "preload_word_lists module": [[70, null]], "preprocess module": [[71, null]], "question_num module": [[20, null]], "readability module": [[21, null]], "reddit_tags module": [[22, null]], "summarize_features module": [[72, null]], "temporal_features module": [[23, null]], "textblob_sentiment_analysis module": [[24, null]], "turn_taking_features module": [[25, null]], "variance_in_DD module": [[26, null]], "within_person_discursive_range module": [[27, null]], "word_mimicry module": [[28, null]], "z-scores:": [[41, "z-scores"]], "zscore_chats_and_conversation module": [[73, null]], "\u201cDriver\u201d Classes: Utterance-, Conversation-, and Speaker-Level Features": [[69, "driver-classes-utterance-conversation-and-speaker-level-features"]]}, "docnames": ["basics", "examples", "feature_builder", "features/basic_features", "features/burstiness", "features/certainty", "features/discursive_diversity", "features/fflow", "features/get_all_DD_features", "features/get_user_network", "features/hedge", "features/index", "features/info_exchange_zscore", "features/information_diversity", "features/lexical_features_v2", "features/named_entity_recognition_features", "features/other_lexical_features", "features/politeness_features", "features/politeness_v2", "features/politeness_v2_helper", "features/question_num", "features/readability", "features/reddit_tags", "features/temporal_features", "features/textblob_sentiment_analysis", "features/turn_taking_features", "features/variance_in_DD", "features/within_person_discursive_range", "features/word_mimicry", "features_conceptual/TEMPLATE", "features_conceptual/certainty", "features_conceptual/content_word_accommodation", "features_conceptual/conversational_repair", "features_conceptual/dale_chall_score", "features_conceptual/discursive_diversity", "features_conceptual/forward_flow", "features_conceptual/function_word_accommodation", "features_conceptual/gini_coefficient", "features_conceptual/hedge", "features_conceptual/index", "features_conceptual/information_diversity", "features_conceptual/information_exchange", "features_conceptual/liwc", "features_conceptual/message_length", "features_conceptual/message_quantity", "features_conceptual/mimicry_bert", "features_conceptual/moving_mimicry", "features_conceptual/named_entity_recognition", "features_conceptual/online_discussions_tags", "features_conceptual/politeness_receptiveness_markers", "features_conceptual/politeness_strategies", "features_conceptual/positivity_bert", "features_conceptual/positivity_z_score", "features_conceptual/proportion_of_first_person_pronouns", "features_conceptual/questions", "features_conceptual/team_burstiness", "features_conceptual/textblob_polarity", "features_conceptual/textblob_subjectivity", "features_conceptual/time_difference", "features_conceptual/turn_taking_index", "features_conceptual/word_ttr", "index", "intro", "utils/assign_chunk_nums", "utils/calculate_chat_level_features", "utils/calculate_conversation_level_features", "utils/calculate_user_level_features", "utils/check_embeddings", "utils/gini_coefficient", "utils/index", "utils/preload_word_lists", "utils/preprocess", "utils/summarize_features", "utils/zscore_chats_and_conversation"], "envversion": {"sphinx": 62, "sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2}, "filenames": ["basics.rst", "examples.rst", "feature_builder.rst", "features/basic_features.rst", "features/burstiness.rst", "features/certainty.rst", "features/discursive_diversity.rst", "features/fflow.rst", "features/get_all_DD_features.rst", "features/get_user_network.rst", "features/hedge.rst", "features/index.rst", "features/info_exchange_zscore.rst", "features/information_diversity.rst", "features/lexical_features_v2.rst", "features/named_entity_recognition_features.rst", "features/other_lexical_features.rst", "features/politeness_features.rst", "features/politeness_v2.rst", "features/politeness_v2_helper.rst", "features/question_num.rst", "features/readability.rst", "features/reddit_tags.rst", "features/temporal_features.rst", "features/textblob_sentiment_analysis.rst", "features/turn_taking_features.rst", "features/variance_in_DD.rst", "features/within_person_discursive_range.rst", "features/word_mimicry.rst", "features_conceptual/TEMPLATE.rst", "features_conceptual/certainty.rst", "features_conceptual/content_word_accommodation.rst", "features_conceptual/conversational_repair.rst", "features_conceptual/dale_chall_score.rst", "features_conceptual/discursive_diversity.rst", "features_conceptual/forward_flow.rst", "features_conceptual/function_word_accommodation.rst", "features_conceptual/gini_coefficient.rst", "features_conceptual/hedge.rst", "features_conceptual/index.rst", "features_conceptual/information_diversity.rst", "features_conceptual/information_exchange.rst", "features_conceptual/liwc.rst", "features_conceptual/message_length.rst", "features_conceptual/message_quantity.rst", "features_conceptual/mimicry_bert.rst", "features_conceptual/moving_mimicry.rst", "features_conceptual/named_entity_recognition.rst", "features_conceptual/online_discussions_tags.rst", "features_conceptual/politeness_receptiveness_markers.rst", "features_conceptual/politeness_strategies.rst", "features_conceptual/positivity_bert.rst", "features_conceptual/positivity_z_score.rst", "features_conceptual/proportion_of_first_person_pronouns.rst", "features_conceptual/questions.rst", "features_conceptual/team_burstiness.rst", "features_conceptual/textblob_polarity.rst", "features_conceptual/textblob_subjectivity.rst", "features_conceptual/time_difference.rst", "features_conceptual/turn_taking_index.rst", "features_conceptual/word_ttr.rst", "index.rst", "intro.rst", "utils/assign_chunk_nums.rst", "utils/calculate_chat_level_features.rst", "utils/calculate_conversation_level_features.rst", "utils/calculate_user_level_features.rst", "utils/check_embeddings.rst", "utils/gini_coefficient.rst", "utils/index.rst", "utils/preload_word_lists.rst", "utils/preprocess.rst", "utils/summarize_features.rst", "utils/zscore_chats_and_conversation.rst"], "indexentries": {"adverb_limiter() (in module features.politeness_v2_helper)": [[19, "features.politeness_v2_helper.adverb_limiter", false]], "assert_key_columns_present() (in module utils.preprocess)": [[71, "utils.preprocess.assert_key_columns_present", false]], "assign_chunk_nums() (in module utils.assign_chunk_nums)": [[63, "utils.assign_chunk_nums.assign_chunk_nums", false]], "bare_command() (in module features.politeness_v2_helper)": [[19, "features.politeness_v2_helper.bare_command", false]], "built_spacy_ner() (in module features.named_entity_recognition_features)": [[15, "features.named_entity_recognition_features.built_spacy_ner", false]], "burstiness() (in module features.burstiness)": [[4, "features.burstiness.burstiness", false]], "calculate_chat_level_features() (utils.calculate_chat_level_features.chatlevelfeaturescalculator method)": [[64, "utils.calculate_chat_level_features.ChatLevelFeaturesCalculator.calculate_chat_level_features", false]], "calculate_conversation_level_features() (utils.calculate_conversation_level_features.conversationlevelfeaturescalculator method)": [[65, "utils.calculate_conversation_level_features.ConversationLevelFeaturesCalculator.calculate_conversation_level_features", false]], "calculate_hedge_features() (utils.calculate_chat_level_features.chatlevelfeaturescalculator method)": [[64, "utils.calculate_chat_level_features.ChatLevelFeaturesCalculator.calculate_hedge_features", false]], "calculate_id_score() (in module features.information_diversity)": [[13, "features.information_diversity.calculate_ID_score", false]], "calculate_info_diversity() (utils.calculate_conversation_level_features.conversationlevelfeaturescalculator method)": [[65, "utils.calculate_conversation_level_features.ConversationLevelFeaturesCalculator.calculate_info_diversity", false]], "calculate_named_entities() (in module features.named_entity_recognition_features)": [[15, "features.named_entity_recognition_features.calculate_named_entities", false]], "calculate_num_question_naive() (in module features.question_num)": [[20, "features.question_num.calculate_num_question_naive", false]], "calculate_politeness_sentiment() (utils.calculate_chat_level_features.chatlevelfeaturescalculator method)": [[64, "utils.calculate_chat_level_features.ChatLevelFeaturesCalculator.calculate_politeness_sentiment", false]], "calculate_politeness_v2() (utils.calculate_chat_level_features.chatlevelfeaturescalculator method)": [[64, "utils.calculate_chat_level_features.ChatLevelFeaturesCalculator.calculate_politeness_v2", false]], "calculate_team_burstiness() (utils.calculate_conversation_level_features.conversationlevelfeaturescalculator method)": [[65, "utils.calculate_conversation_level_features.ConversationLevelFeaturesCalculator.calculate_team_burstiness", false]], "calculate_textblob_sentiment() (utils.calculate_chat_level_features.chatlevelfeaturescalculator method)": [[64, "utils.calculate_chat_level_features.ChatLevelFeaturesCalculator.calculate_textblob_sentiment", false]], "calculate_user_level_features() (utils.calculate_user_level_features.userlevelfeaturescalculator method)": [[66, "utils.calculate_user_level_features.UserLevelFeaturesCalculator.calculate_user_level_features", false]], "calculate_vector_word_mimicry() (utils.calculate_chat_level_features.chatlevelfeaturescalculator method)": [[64, "utils.calculate_chat_level_features.ChatLevelFeaturesCalculator.calculate_vector_word_mimicry", false]], "calculate_word_mimicry() (utils.calculate_chat_level_features.chatlevelfeaturescalculator method)": [[64, "utils.calculate_chat_level_features.ChatLevelFeaturesCalculator.calculate_word_mimicry", false]], "chat_level_features() (feature_builder.featurebuilder method)": [[2, "feature_builder.FeatureBuilder.chat_level_features", false]], "chatlevelfeaturescalculator (class in utils.calculate_chat_level_features)": [[64, "utils.calculate_chat_level_features.ChatLevelFeaturesCalculator", false]], "check_embeddings() (in module utils.check_embeddings)": [[67, "utils.check_embeddings.check_embeddings", false]], "classify_ntri() (in module features.other_lexical_features)": [[16, "features.other_lexical_features.classify_NTRI", false]], "classify_text_dalechall() (in module features.readability)": [[21, "features.readability.classify_text_dalechall", false]], "clean_text() (in module features.politeness_v2_helper)": [[19, "features.politeness_v2_helper.clean_text", false]], "coerce_to_date_or_number() (in module features.temporal_features)": [[23, "features.temporal_features.coerce_to_date_or_number", false]], "commit_data() (in module features.politeness_v2_helper)": [[19, "features.politeness_v2_helper.commit_data", false]], "compress() (in module utils.preprocess)": [[71, "utils.preprocess.compress", false]], "compute_frequency() (in module features.word_mimicry)": [[28, "features.word_mimicry.compute_frequency", false]], "compute_frequency_per_conv() (in module features.word_mimicry)": [[28, "features.word_mimicry.compute_frequency_per_conv", false]], "computetf() (in module features.word_mimicry)": [[28, "features.word_mimicry.computeTF", false]], "concat_bert_features() (utils.calculate_chat_level_features.chatlevelfeaturescalculator method)": [[64, "utils.calculate_chat_level_features.ChatLevelFeaturesCalculator.concat_bert_features", false]], "conjection_seperator() (in module features.politeness_v2_helper)": [[19, "features.politeness_v2_helper.conjection_seperator", false]], "content_mimicry_score() (in module features.word_mimicry)": [[28, "features.word_mimicry.Content_mimicry_score", false]], "content_mimicry_score_per_conv() (in module features.word_mimicry)": [[28, "features.word_mimicry.Content_mimicry_score_per_conv", false]], "conv_level_features() (feature_builder.featurebuilder method)": [[2, "feature_builder.FeatureBuilder.conv_level_features", false]], "conv_to_float_arr() (in module features.get_all_dd_features)": [[8, "features.get_all_DD_features.conv_to_float_arr", false]], "conversationlevelfeaturescalculator (class in utils.calculate_conversation_level_features)": [[65, "utils.calculate_conversation_level_features.ConversationLevelFeaturesCalculator", false]], "count_all_caps() (in module features.reddit_tags)": [[22, "features.reddit_tags.count_all_caps", false]], "count_bullet_points() (in module features.reddit_tags)": [[22, "features.reddit_tags.count_bullet_points", false]], "count_characters() (in module features.basic_features)": [[3, "features.basic_features.count_characters", false]], "count_difficult_words() (in module features.readability)": [[21, "features.readability.count_difficult_words", false]], "count_ellipses() (in module features.reddit_tags)": [[22, "features.reddit_tags.count_ellipses", false]], "count_emojis() (in module features.reddit_tags)": [[22, "features.reddit_tags.count_emojis", false]], "count_emphasis() (in module features.reddit_tags)": [[22, "features.reddit_tags.count_emphasis", false]], "count_line_breaks() (in module features.reddit_tags)": [[22, "features.reddit_tags.count_line_breaks", false]], "count_links() (in module features.reddit_tags)": [[22, "features.reddit_tags.count_links", false]], "count_matches() (in module features.politeness_v2_helper)": [[19, "features.politeness_v2_helper.count_matches", false]], "count_messages() (in module features.basic_features)": [[3, "features.basic_features.count_messages", false]], "count_numbering() (in module features.reddit_tags)": [[22, "features.reddit_tags.count_numbering", false]], "count_parentheses() (in module features.reddit_tags)": [[22, "features.reddit_tags.count_parentheses", false]], "count_quotes() (in module features.reddit_tags)": [[22, "features.reddit_tags.count_quotes", false]], "count_responding_to_someone() (in module features.reddit_tags)": [[22, "features.reddit_tags.count_responding_to_someone", false]], "count_spacy_matches() (in module features.politeness_v2_helper)": [[19, "features.politeness_v2_helper.count_spacy_matches", false]], "count_syllables() (in module features.readability)": [[21, "features.readability.count_syllables", false]], "count_turn_taking_index() (in module features.turn_taking_features)": [[25, "features.turn_taking_features.count_turn_taking_index", false]], "count_turns() (in module features.turn_taking_features)": [[25, "features.turn_taking_features.count_turns", false]], "count_user_references() (in module features.reddit_tags)": [[22, "features.reddit_tags.count_user_references", false]], "count_words() (in module features.basic_features)": [[3, "features.basic_features.count_words", false]], "create_chunks() (in module utils.assign_chunk_nums)": [[63, "utils.assign_chunk_nums.create_chunks", false]], "create_chunks_messages() (in module utils.assign_chunk_nums)": [[63, "utils.assign_chunk_nums.create_chunks_messages", false]], "create_cumulative_rows() (in module utils.preprocess)": [[71, "utils.preprocess.create_cumulative_rows", false]], "dale_chall_helper() (in module features.readability)": [[21, "features.readability.dale_chall_helper", false]], "feat_counts() (in module features.politeness_v2_helper)": [[19, "features.politeness_v2_helper.feat_counts", false]], "feature_builder": [[2, "module-feature_builder", false]], "featurebuilder (class in feature_builder)": [[2, "feature_builder.FeatureBuilder", false]], "features.basic_features": [[3, "module-features.basic_features", false]], "features.burstiness": [[4, "module-features.burstiness", false]], "features.certainty": [[5, "module-features.certainty", false]], "features.discursive_diversity": [[6, "module-features.discursive_diversity", false]], "features.fflow": [[7, "module-features.fflow", false]], "features.get_all_dd_features": [[8, "module-features.get_all_DD_features", false]], "features.get_user_network": [[9, "module-features.get_user_network", false]], "features.hedge": [[10, "module-features.hedge", false]], "features.info_exchange_zscore": [[12, "module-features.info_exchange_zscore", false]], "features.information_diversity": [[13, "module-features.information_diversity", false]], "features.lexical_features_v2": [[14, "module-features.lexical_features_v2", false]], "features.named_entity_recognition_features": [[15, "module-features.named_entity_recognition_features", false]], "features.other_lexical_features": [[16, "module-features.other_lexical_features", false]], "features.politeness_features": [[17, "module-features.politeness_features", false]], "features.politeness_v2": [[18, "module-features.politeness_v2", false]], "features.politeness_v2_helper": [[19, "module-features.politeness_v2_helper", false]], "features.question_num": [[20, "module-features.question_num", false]], "features.readability": [[21, "module-features.readability", false]], "features.reddit_tags": [[22, "module-features.reddit_tags", false]], "features.temporal_features": [[23, "module-features.temporal_features", false]], "features.textblob_sentiment_analysis": [[24, "module-features.textblob_sentiment_analysis", false]], "features.turn_taking_features": [[25, "module-features.turn_taking_features", false]], "features.variance_in_dd": [[26, "module-features.variance_in_DD", false]], "features.within_person_discursive_range": [[27, "module-features.within_person_discursive_range", false]], "features.word_mimicry": [[28, "module-features.word_mimicry", false]], "featurize() (feature_builder.featurebuilder method)": [[2, "feature_builder.FeatureBuilder.featurize", false]], "function_mimicry_score() (in module features.word_mimicry)": [[28, "features.word_mimicry.function_mimicry_score", false]], "generate_bert() (in module utils.check_embeddings)": [[67, "utils.check_embeddings.generate_bert", false]], "generate_certainty_pkl() (in module utils.check_embeddings)": [[67, "utils.check_embeddings.generate_certainty_pkl", false]], "generate_lexicon_pkl() (in module utils.check_embeddings)": [[67, "utils.check_embeddings.generate_lexicon_pkl", false]], "generate_vect() (in module utils.check_embeddings)": [[67, "utils.check_embeddings.generate_vect", false]], "get_average() (in module utils.summarize_features)": [[72, "utils.summarize_features.get_average", false]], "get_centroids() (utils.calculate_user_level_features.userlevelfeaturescalculator method)": [[66, "utils.calculate_user_level_features.UserLevelFeaturesCalculator.get_centroids", false]], "get_certainty() (in module features.certainty)": [[5, "features.certainty.get_certainty", false]], "get_certainty_score() (utils.calculate_chat_level_features.chatlevelfeaturescalculator method)": [[64, "utils.calculate_chat_level_features.ChatLevelFeaturesCalculator.get_certainty_score", false]], "get_content_words_in_message() (in module features.word_mimicry)": [[28, "features.word_mimicry.get_content_words_in_message", false]], "get_conversation_level_aggregates() (utils.calculate_conversation_level_features.conversationlevelfeaturescalculator method)": [[65, "utils.calculate_conversation_level_features.ConversationLevelFeaturesCalculator.get_conversation_level_aggregates", false]], "get_cosine_similarity() (in module features.discursive_diversity)": [[6, "features.discursive_diversity.get_cosine_similarity", false]], "get_dale_chall_easy_words() (in module utils.preload_word_lists)": [[70, "utils.preload_word_lists.get_dale_chall_easy_words", false]], "get_dale_chall_score_and_classfication() (utils.calculate_chat_level_features.chatlevelfeaturescalculator method)": [[64, "utils.calculate_chat_level_features.ChatLevelFeaturesCalculator.get_dale_chall_score_and_classfication", false]], "get_dd() (in module features.discursive_diversity)": [[6, "features.discursive_diversity.get_DD", false]], "get_dd_features() (in module features.get_all_dd_features)": [[8, "features.get_all_DD_features.get_DD_features", false]], "get_dep_pairs() (in module features.politeness_v2_helper)": [[19, "features.politeness_v2_helper.get_dep_pairs", false]], "get_dep_pairs_noneg() (in module features.politeness_v2_helper)": [[19, "features.politeness_v2_helper.get_dep_pairs_noneg", false]], "get_discursive_diversity_features() (utils.calculate_conversation_level_features.conversationlevelfeaturescalculator method)": [[65, "utils.calculate_conversation_level_features.ConversationLevelFeaturesCalculator.get_discursive_diversity_features", false]], "get_first_pct_of_chat() (feature_builder.featurebuilder method)": [[2, "feature_builder.FeatureBuilder.get_first_pct_of_chat", false]], "get_first_person_words() (in module utils.preload_word_lists)": [[70, "utils.preload_word_lists.get_first_person_words", false]], "get_forward_flow() (in module features.fflow)": [[7, "features.fflow.get_forward_flow", false]], "get_forward_flow() (utils.calculate_chat_level_features.chatlevelfeaturescalculator method)": [[64, "utils.calculate_chat_level_features.ChatLevelFeaturesCalculator.get_forward_flow", false]], "get_function_words() (in module utils.preload_word_lists)": [[70, "utils.preload_word_lists.get_function_words", false]], "get_function_words_in_message() (in module features.word_mimicry)": [[28, "features.word_mimicry.get_function_words_in_message", false]], "get_gini() (in module utils.gini_coefficient)": [[68, "utils.gini_coefficient.get_gini", false]], "get_gini_features() (utils.calculate_conversation_level_features.conversationlevelfeaturescalculator method)": [[65, "utils.calculate_conversation_level_features.ConversationLevelFeaturesCalculator.get_gini_features", false]], "get_info_diversity() (in module features.information_diversity)": [[13, "features.information_diversity.get_info_diversity", false]], "get_info_exchange_wordcount() (in module features.info_exchange_zscore)": [[12, "features.info_exchange_zscore.get_info_exchange_wordcount", false]], "get_liwc_count() (in module features.lexical_features_v2)": [[14, "features.lexical_features_v2.get_liwc_count", false]], "get_max() (in module utils.summarize_features)": [[72, "utils.summarize_features.get_max", false]], "get_mimicry_bert() (in module features.word_mimicry)": [[28, "features.word_mimicry.get_mimicry_bert", false]], "get_min() (in module utils.summarize_features)": [[72, "utils.summarize_features.get_min", false]], "get_moving_mimicry() (in module features.word_mimicry)": [[28, "features.word_mimicry.get_moving_mimicry", false]], "get_named_entity() (utils.calculate_chat_level_features.chatlevelfeaturescalculator method)": [[64, "utils.calculate_chat_level_features.ChatLevelFeaturesCalculator.get_named_entity", false]], "get_nan_vector() (in module features.within_person_discursive_range)": [[27, "features.within_person_discursive_range.get_nan_vector", false]], "get_polarity_score() (in module features.textblob_sentiment_analysis)": [[24, "features.textblob_sentiment_analysis.get_polarity_score", false]], "get_politeness_strategies() (in module features.politeness_features)": [[17, "features.politeness_features.get_politeness_strategies", false]], "get_politeness_v2() (in module features.politeness_v2)": [[18, "features.politeness_v2.get_politeness_v2", false]], "get_proportion_first_pronouns() (in module features.other_lexical_features)": [[16, "features.other_lexical_features.get_proportion_first_pronouns", false]], "get_question_words() (in module utils.preload_word_lists)": [[70, "utils.preload_word_lists.get_question_words", false]], "get_reddit_features() (utils.calculate_chat_level_features.chatlevelfeaturescalculator method)": [[64, "utils.calculate_chat_level_features.ChatLevelFeaturesCalculator.get_reddit_features", false]], "get_sentiment() (in module utils.check_embeddings)": [[67, "utils.check_embeddings.get_sentiment", false]], "get_stdev() (in module utils.summarize_features)": [[72, "utils.summarize_features.get_stdev", false]], "get_subjectivity_score() (in module features.textblob_sentiment_analysis)": [[24, "features.textblob_sentiment_analysis.get_subjectivity_score", false]], "get_sum() (in module utils.summarize_features)": [[72, "utils.summarize_features.get_sum", false]], "get_team_burstiness() (in module features.burstiness)": [[4, "features.burstiness.get_team_burstiness", false]], "get_temporal_features() (utils.calculate_chat_level_features.chatlevelfeaturescalculator method)": [[64, "utils.calculate_chat_level_features.ChatLevelFeaturesCalculator.get_temporal_features", false]], "get_time_diff() (in module features.temporal_features)": [[23, "features.temporal_features.get_time_diff", false]], "get_time_diff_startend() (in module features.temporal_features)": [[23, "features.temporal_features.get_time_diff_startend", false]], "get_turn() (in module features.turn_taking_features)": [[25, "features.turn_taking_features.get_turn", false]], "get_turn_id() (in module utils.preprocess)": [[71, "utils.preprocess.get_turn_id", false]], "get_turn_taking_features() (utils.calculate_conversation_level_features.conversationlevelfeaturescalculator method)": [[65, "utils.calculate_conversation_level_features.ConversationLevelFeaturesCalculator.get_turn_taking_features", false]], "get_unique_pairwise_combos() (in module features.discursive_diversity)": [[6, "features.discursive_diversity.get_unique_pairwise_combos", false]], "get_user_average_dataframe() (in module utils.summarize_features)": [[72, "utils.summarize_features.get_user_average_dataframe", false]], "get_user_level_aggregates() (utils.calculate_conversation_level_features.conversationlevelfeaturescalculator method)": [[65, "utils.calculate_conversation_level_features.ConversationLevelFeaturesCalculator.get_user_level_aggregates", false]], "get_user_level_averaged_features() (utils.calculate_user_level_features.userlevelfeaturescalculator method)": [[66, "utils.calculate_user_level_features.UserLevelFeaturesCalculator.get_user_level_averaged_features", false]], "get_user_level_summary_statistics_features() (utils.calculate_user_level_features.userlevelfeaturescalculator method)": [[66, "utils.calculate_user_level_features.UserLevelFeaturesCalculator.get_user_level_summary_statistics_features", false]], "get_user_level_summed_features() (utils.calculate_user_level_features.userlevelfeaturescalculator method)": [[66, "utils.calculate_user_level_features.UserLevelFeaturesCalculator.get_user_level_summed_features", false]], "get_user_network() (in module features.get_user_network)": [[9, "features.get_user_network.get_user_network", false]], "get_user_network() (utils.calculate_user_level_features.userlevelfeaturescalculator method)": [[66, "utils.calculate_user_level_features.UserLevelFeaturesCalculator.get_user_network", false]], "get_user_sum_dataframe() (in module utils.summarize_features)": [[72, "utils.summarize_features.get_user_sum_dataframe", false]], "get_variance_in_dd() (in module features.variance_in_dd)": [[26, "features.variance_in_DD.get_variance_in_DD", false]], "get_within_person_disc_range() (in module features.within_person_discursive_range)": [[27, "features.within_person_discursive_range.get_within_person_disc_range", false]], "get_word_ttr() (in module features.other_lexical_features)": [[16, "features.other_lexical_features.get_word_TTR", false]], "get_zscore_across_all_chats() (in module utils.zscore_chats_and_conversation)": [[73, "utils.zscore_chats_and_conversation.get_zscore_across_all_chats", false]], "get_zscore_across_all_conversations() (in module utils.zscore_chats_and_conversation)": [[73, "utils.zscore_chats_and_conversation.get_zscore_across_all_conversations", false]], "gini_coefficient() (in module utils.gini_coefficient)": [[68, "utils.gini_coefficient.gini_coefficient", false]], "info_diversity() (in module features.information_diversity)": [[13, "features.information_diversity.info_diversity", false]], "info_exchange() (utils.calculate_chat_level_features.chatlevelfeaturescalculator method)": [[64, "utils.calculate_chat_level_features.ChatLevelFeaturesCalculator.info_exchange", false]], "is_hedged_sentence_1() (in module features.hedge)": [[10, "features.hedge.is_hedged_sentence_1", false]], "lexical_features() (utils.calculate_chat_level_features.chatlevelfeaturescalculator method)": [[64, "utils.calculate_chat_level_features.ChatLevelFeaturesCalculator.lexical_features", false]], "liwc_features() (in module features.lexical_features_v2)": [[14, "features.lexical_features_v2.liwc_features", false]], "load_saved_data() (in module features.politeness_v2_helper)": [[19, "features.politeness_v2_helper.load_saved_data", false]], "load_to_dict() (in module features.politeness_v2_helper)": [[19, "features.politeness_v2_helper.load_to_dict", false]], "load_to_lists() (in module features.politeness_v2_helper)": [[19, "features.politeness_v2_helper.load_to_lists", false]], "merge_conv_data_with_original() (feature_builder.featurebuilder method)": [[2, "feature_builder.FeatureBuilder.merge_conv_data_with_original", false]], "mimic_words() (in module features.word_mimicry)": [[28, "features.word_mimicry.mimic_words", false]], "module": [[2, "module-feature_builder", false], [3, "module-features.basic_features", false], [4, "module-features.burstiness", false], [5, "module-features.certainty", false], [6, "module-features.discursive_diversity", false], [7, "module-features.fflow", false], [8, "module-features.get_all_DD_features", false], [9, "module-features.get_user_network", false], [10, "module-features.hedge", false], [12, "module-features.info_exchange_zscore", false], [13, "module-features.information_diversity", false], [14, "module-features.lexical_features_v2", false], [15, "module-features.named_entity_recognition_features", false], [16, "module-features.other_lexical_features", false], [17, "module-features.politeness_features", false], [18, "module-features.politeness_v2", false], [19, "module-features.politeness_v2_helper", false], [20, "module-features.question_num", false], [21, "module-features.readability", false], [22, "module-features.reddit_tags", false], [23, "module-features.temporal_features", false], [24, "module-features.textblob_sentiment_analysis", false], [25, "module-features.turn_taking_features", false], [26, "module-features.variance_in_DD", false], [27, "module-features.within_person_discursive_range", false], [28, "module-features.word_mimicry", false], [63, "module-utils.assign_chunk_nums", false], [64, "module-utils.calculate_chat_level_features", false], [65, "module-utils.calculate_conversation_level_features", false], [66, "module-utils.calculate_user_level_features", false], [67, "module-utils.check_embeddings", false], [68, "module-utils.gini_coefficient", false], [70, "module-utils.preload_word_lists", false], [71, "module-utils.preprocess", false], [72, "module-utils.summarize_features", false], [73, "module-utils.zscore_chats_and_conversation", false]], "named_entities() (in module features.named_entity_recognition_features)": [[15, "features.named_entity_recognition_features.named_entities", false]], "num_named_entity() (in module features.named_entity_recognition_features)": [[15, "features.named_entity_recognition_features.num_named_entity", false]], "other_lexical_features() (utils.calculate_chat_level_features.chatlevelfeaturescalculator method)": [[64, "utils.calculate_chat_level_features.ChatLevelFeaturesCalculator.other_lexical_features", false]], "phrase_split() (in module features.politeness_v2_helper)": [[19, "features.politeness_v2_helper.phrase_split", false]], "positivity_zscore() (utils.calculate_chat_level_features.chatlevelfeaturescalculator method)": [[64, "utils.calculate_chat_level_features.ChatLevelFeaturesCalculator.positivity_zscore", false]], "prep_simple() (in module features.politeness_v2_helper)": [[19, "features.politeness_v2_helper.prep_simple", false]], "prep_whole() (in module features.politeness_v2_helper)": [[19, "features.politeness_v2_helper.prep_whole", false]], "preprocess_chat_data() (feature_builder.featurebuilder method)": [[2, "feature_builder.FeatureBuilder.preprocess_chat_data", false]], "preprocess_conversation_columns() (in module utils.preprocess)": [[71, "utils.preprocess.preprocess_conversation_columns", false]], "preprocess_naive_turns() (in module utils.preprocess)": [[71, "utils.preprocess.preprocess_naive_turns", false]], "preprocess_text() (in module utils.preprocess)": [[71, "utils.preprocess.preprocess_text", false]], "preprocess_text_lowercase_but_retain_punctuation() (in module utils.preprocess)": [[71, "utils.preprocess.preprocess_text_lowercase_but_retain_punctuation", false]], "preprocessing() (in module features.information_diversity)": [[13, "features.information_diversity.preprocessing", false]], "punctuation_seperator() (in module features.politeness_v2_helper)": [[19, "features.politeness_v2_helper.punctuation_seperator", false]], "question() (in module features.politeness_v2_helper)": [[19, "features.politeness_v2_helper.Question", false]], "read_in_lexicons() (in module utils.check_embeddings)": [[67, "utils.check_embeddings.read_in_lexicons", false]], "reduce_chunks() (in module utils.assign_chunk_nums)": [[63, "utils.assign_chunk_nums.reduce_chunks", false]], "remove_active_user() (in module features.get_user_network)": [[9, "features.get_user_network.remove_active_user", false]], "save_features() (feature_builder.featurebuilder method)": [[2, "feature_builder.FeatureBuilder.save_features", false]], "sentence_pad() (in module features.politeness_v2_helper)": [[19, "features.politeness_v2_helper.sentence_pad", false]], "sentence_split() (in module features.politeness_v2_helper)": [[19, "features.politeness_v2_helper.sentence_split", false]], "sentenciser() (in module features.politeness_v2_helper)": [[19, "features.politeness_v2_helper.sentenciser", false]], "set_self_conv_data() (feature_builder.featurebuilder method)": [[2, "feature_builder.FeatureBuilder.set_self_conv_data", false]], "text_based_features() (utils.calculate_chat_level_features.chatlevelfeaturescalculator method)": [[64, "utils.calculate_chat_level_features.ChatLevelFeaturesCalculator.text_based_features", false]], "token_count() (in module features.politeness_v2_helper)": [[19, "features.politeness_v2_helper.token_count", false]], "train_spacy_ner() (in module features.named_entity_recognition_features)": [[15, "features.named_entity_recognition_features.train_spacy_ner", false]], "user_level_features() (feature_builder.featurebuilder method)": [[2, "feature_builder.FeatureBuilder.user_level_features", false]], "userlevelfeaturescalculator (class in utils.calculate_user_level_features)": [[66, "utils.calculate_user_level_features.UserLevelFeaturesCalculator", false]], "utils.assign_chunk_nums": [[63, "module-utils.assign_chunk_nums", false]], "utils.calculate_chat_level_features": [[64, "module-utils.calculate_chat_level_features", false]], "utils.calculate_conversation_level_features": [[65, "module-utils.calculate_conversation_level_features", false]], "utils.calculate_user_level_features": [[66, "module-utils.calculate_user_level_features", false]], "utils.check_embeddings": [[67, "module-utils.check_embeddings", false]], "utils.gini_coefficient": [[68, "module-utils.gini_coefficient", false]], "utils.preload_word_lists": [[70, "module-utils.preload_word_lists", false]], "utils.preprocess": [[71, "module-utils.preprocess", false]], "utils.summarize_features": [[72, "module-utils.summarize_features", false]], "utils.zscore_chats_and_conversation": [[73, "module-utils.zscore_chats_and_conversation", false]], "word_start() (in module features.politeness_v2_helper)": [[19, "features.politeness_v2_helper.word_start", false]]}, "objects": {"": [[2, 0, 0, "-", "feature_builder"]], "feature_builder": [[2, 1, 1, "", "FeatureBuilder"]], "feature_builder.FeatureBuilder": [[2, 2, 1, "", "chat_level_features"], [2, 2, 1, "", "conv_level_features"], [2, 2, 1, "", "featurize"], [2, 2, 1, "", "get_first_pct_of_chat"], [2, 2, 1, "", "merge_conv_data_with_original"], [2, 2, 1, "", "preprocess_chat_data"], [2, 2, 1, "", "save_features"], [2, 2, 1, "", "set_self_conv_data"], [2, 2, 1, "", "user_level_features"]], "features": [[3, 0, 0, "-", "basic_features"], [4, 0, 0, "-", "burstiness"], [5, 0, 0, "-", "certainty"], [6, 0, 0, "-", "discursive_diversity"], [7, 0, 0, "-", "fflow"], [8, 0, 0, "-", "get_all_DD_features"], [9, 0, 0, "-", "get_user_network"], [10, 0, 0, "-", "hedge"], [12, 0, 0, "-", "info_exchange_zscore"], [13, 0, 0, "-", "information_diversity"], [14, 0, 0, "-", "lexical_features_v2"], [15, 0, 0, "-", "named_entity_recognition_features"], [16, 0, 0, "-", "other_lexical_features"], [17, 0, 0, "-", "politeness_features"], [18, 0, 0, "-", "politeness_v2"], [19, 0, 0, "-", "politeness_v2_helper"], [20, 0, 0, "-", "question_num"], [21, 0, 0, "-", "readability"], [22, 0, 0, "-", "reddit_tags"], [23, 0, 0, "-", "temporal_features"], [24, 0, 0, "-", "textblob_sentiment_analysis"], [25, 0, 0, "-", "turn_taking_features"], [26, 0, 0, "-", "variance_in_DD"], [27, 0, 0, "-", "within_person_discursive_range"], [28, 0, 0, "-", "word_mimicry"]], "features.basic_features": [[3, 3, 1, "", "count_characters"], [3, 3, 1, "", "count_messages"], [3, 3, 1, "", "count_words"]], "features.burstiness": [[4, 3, 1, "", "burstiness"], [4, 3, 1, "", "get_team_burstiness"]], "features.certainty": [[5, 3, 1, "", "get_certainty"]], "features.discursive_diversity": [[6, 3, 1, "", "get_DD"], [6, 3, 1, "", "get_cosine_similarity"], [6, 3, 1, "", "get_unique_pairwise_combos"]], "features.fflow": [[7, 3, 1, "", "get_forward_flow"]], "features.get_all_DD_features": [[8, 3, 1, "", "conv_to_float_arr"], [8, 3, 1, "", "get_DD_features"]], "features.get_user_network": [[9, 3, 1, "", "get_user_network"], [9, 3, 1, "", "remove_active_user"]], "features.hedge": [[10, 3, 1, "", "is_hedged_sentence_1"]], "features.info_exchange_zscore": [[12, 3, 1, "", "get_info_exchange_wordcount"]], "features.information_diversity": [[13, 3, 1, "", "calculate_ID_score"], [13, 3, 1, "", "get_info_diversity"], [13, 3, 1, "", "info_diversity"], [13, 3, 1, "", "preprocessing"]], "features.lexical_features_v2": [[14, 3, 1, "", "get_liwc_count"], [14, 3, 1, "", "liwc_features"]], "features.named_entity_recognition_features": [[15, 3, 1, "", "built_spacy_ner"], [15, 3, 1, "", "calculate_named_entities"], [15, 3, 1, "", "named_entities"], [15, 3, 1, "", "num_named_entity"], [15, 3, 1, "", "train_spacy_ner"]], "features.other_lexical_features": [[16, 3, 1, "", "classify_NTRI"], [16, 3, 1, "", "get_proportion_first_pronouns"], [16, 3, 1, "", "get_word_TTR"]], "features.politeness_features": [[17, 3, 1, "", "get_politeness_strategies"]], "features.politeness_v2": [[18, 3, 1, "", "get_politeness_v2"]], "features.politeness_v2_helper": [[19, 3, 1, "", "Question"], [19, 3, 1, "", "adverb_limiter"], [19, 3, 1, "", "bare_command"], [19, 3, 1, "", "clean_text"], [19, 3, 1, "", "commit_data"], [19, 3, 1, "", "conjection_seperator"], [19, 3, 1, "", "count_matches"], [19, 3, 1, "", "count_spacy_matches"], [19, 3, 1, "", "feat_counts"], [19, 3, 1, "", "get_dep_pairs"], [19, 3, 1, "", "get_dep_pairs_noneg"], [19, 3, 1, "", "load_saved_data"], [19, 3, 1, "", "load_to_dict"], [19, 3, 1, "", "load_to_lists"], [19, 3, 1, "", "phrase_split"], [19, 3, 1, "", "prep_simple"], [19, 3, 1, "", "prep_whole"], [19, 3, 1, "", "punctuation_seperator"], [19, 3, 1, "", "sentence_pad"], [19, 3, 1, "", "sentence_split"], [19, 3, 1, "", "sentenciser"], [19, 3, 1, "", "token_count"], [19, 3, 1, "", "word_start"]], "features.question_num": [[20, 3, 1, "", "calculate_num_question_naive"]], "features.readability": [[21, 3, 1, "", "classify_text_dalechall"], [21, 3, 1, "", "count_difficult_words"], [21, 3, 1, "", "count_syllables"], [21, 3, 1, "", "dale_chall_helper"]], "features.reddit_tags": [[22, 3, 1, "", "count_all_caps"], [22, 3, 1, "", "count_bullet_points"], [22, 3, 1, "", "count_ellipses"], [22, 3, 1, "", "count_emojis"], [22, 3, 1, "", "count_emphasis"], [22, 3, 1, "", "count_line_breaks"], [22, 3, 1, "", "count_links"], [22, 3, 1, "", "count_numbering"], [22, 3, 1, "", "count_parentheses"], [22, 3, 1, "", "count_quotes"], [22, 3, 1, "", "count_responding_to_someone"], [22, 3, 1, "", "count_user_references"]], "features.temporal_features": [[23, 3, 1, "", "coerce_to_date_or_number"], [23, 3, 1, "", "get_time_diff"], [23, 3, 1, "", "get_time_diff_startend"]], "features.textblob_sentiment_analysis": [[24, 3, 1, "", "get_polarity_score"], [24, 3, 1, "", "get_subjectivity_score"]], "features.turn_taking_features": [[25, 3, 1, "", "count_turn_taking_index"], [25, 3, 1, "", "count_turns"], [25, 3, 1, "", "get_turn"]], "features.variance_in_DD": [[26, 3, 1, "", "get_variance_in_DD"]], "features.within_person_discursive_range": [[27, 3, 1, "", "get_nan_vector"], [27, 3, 1, "", "get_within_person_disc_range"]], "features.word_mimicry": [[28, 3, 1, "", "Content_mimicry_score"], [28, 3, 1, "", "Content_mimicry_score_per_conv"], [28, 3, 1, "", "computeTF"], [28, 3, 1, "", "compute_frequency"], [28, 3, 1, "", "compute_frequency_per_conv"], [28, 3, 1, "", "function_mimicry_score"], [28, 3, 1, "", "get_content_words_in_message"], [28, 3, 1, "", "get_function_words_in_message"], [28, 3, 1, "", "get_mimicry_bert"], [28, 3, 1, "", "get_moving_mimicry"], [28, 3, 1, "", "mimic_words"]], "utils": [[63, 0, 0, "-", "assign_chunk_nums"], [64, 0, 0, "-", "calculate_chat_level_features"], [65, 0, 0, "-", "calculate_conversation_level_features"], [66, 0, 0, "-", "calculate_user_level_features"], [67, 0, 0, "-", "check_embeddings"], [68, 0, 0, "-", "gini_coefficient"], [70, 0, 0, "-", "preload_word_lists"], [71, 0, 0, "-", "preprocess"], [72, 0, 0, "-", "summarize_features"], [73, 0, 0, "-", "zscore_chats_and_conversation"]], "utils.assign_chunk_nums": [[63, 3, 1, "", "assign_chunk_nums"], [63, 3, 1, "", "create_chunks"], [63, 3, 1, "", "create_chunks_messages"], [63, 3, 1, "", "reduce_chunks"]], "utils.calculate_chat_level_features": [[64, 1, 1, "", "ChatLevelFeaturesCalculator"]], "utils.calculate_chat_level_features.ChatLevelFeaturesCalculator": [[64, 2, 1, "", "calculate_chat_level_features"], [64, 2, 1, "", "calculate_hedge_features"], [64, 2, 1, "", "calculate_politeness_sentiment"], [64, 2, 1, "", "calculate_politeness_v2"], [64, 2, 1, "", "calculate_textblob_sentiment"], [64, 2, 1, "", "calculate_vector_word_mimicry"], [64, 2, 1, "", "calculate_word_mimicry"], [64, 2, 1, "", "concat_bert_features"], [64, 2, 1, "", "get_certainty_score"], [64, 2, 1, "", "get_dale_chall_score_and_classfication"], [64, 2, 1, "", "get_forward_flow"], [64, 2, 1, "", "get_named_entity"], [64, 2, 1, "", "get_reddit_features"], [64, 2, 1, "", "get_temporal_features"], [64, 2, 1, "", "info_exchange"], [64, 2, 1, "", "lexical_features"], [64, 2, 1, "", "other_lexical_features"], [64, 2, 1, "", "positivity_zscore"], [64, 2, 1, "", "text_based_features"]], "utils.calculate_conversation_level_features": [[65, 1, 1, "", "ConversationLevelFeaturesCalculator"]], "utils.calculate_conversation_level_features.ConversationLevelFeaturesCalculator": [[65, 2, 1, "", "calculate_conversation_level_features"], [65, 2, 1, "", "calculate_info_diversity"], [65, 2, 1, "", "calculate_team_burstiness"], [65, 2, 1, "", "get_conversation_level_aggregates"], [65, 2, 1, "", "get_discursive_diversity_features"], [65, 2, 1, "", "get_gini_features"], [65, 2, 1, "", "get_turn_taking_features"], [65, 2, 1, "", "get_user_level_aggregates"]], "utils.calculate_user_level_features": [[66, 1, 1, "", "UserLevelFeaturesCalculator"]], "utils.calculate_user_level_features.UserLevelFeaturesCalculator": [[66, 2, 1, "", "calculate_user_level_features"], [66, 2, 1, "", "get_centroids"], [66, 2, 1, "", "get_user_level_averaged_features"], [66, 2, 1, "", "get_user_level_summary_statistics_features"], [66, 2, 1, "", "get_user_level_summed_features"], [66, 2, 1, "", "get_user_network"]], "utils.check_embeddings": [[67, 3, 1, "", "check_embeddings"], [67, 3, 1, "", "generate_bert"], [67, 3, 1, "", "generate_certainty_pkl"], [67, 3, 1, "", "generate_lexicon_pkl"], [67, 3, 1, "", "generate_vect"], [67, 3, 1, "", "get_sentiment"], [67, 3, 1, "", "read_in_lexicons"]], "utils.gini_coefficient": [[68, 3, 1, "", "get_gini"], [68, 3, 1, "", "gini_coefficient"]], "utils.preload_word_lists": [[70, 3, 1, "", "get_dale_chall_easy_words"], [70, 3, 1, "", "get_first_person_words"], [70, 3, 1, "", "get_function_words"], [70, 3, 1, "", "get_question_words"]], "utils.preprocess": [[71, 3, 1, "", "assert_key_columns_present"], [71, 3, 1, "", "compress"], [71, 3, 1, "", "create_cumulative_rows"], [71, 3, 1, "", "get_turn_id"], [71, 3, 1, "", "preprocess_conversation_columns"], [71, 3, 1, "", "preprocess_naive_turns"], [71, 3, 1, "", "preprocess_text"], [71, 3, 1, "", "preprocess_text_lowercase_but_retain_punctuation"]], "utils.summarize_features": [[72, 3, 1, "", "get_average"], [72, 3, 1, "", "get_max"], [72, 3, 1, "", "get_min"], [72, 3, 1, "", "get_stdev"], [72, 3, 1, "", "get_sum"], [72, 3, 1, "", "get_user_average_dataframe"], [72, 3, 1, "", "get_user_sum_dataframe"]], "utils.zscore_chats_and_conversation": [[73, 3, 1, "", "get_zscore_across_all_chats"], [73, 3, 1, "", "get_zscore_across_all_conversations"]]}, "objnames": {"0": ["py", "module", "Python module"], "1": ["py", "class", "Python class"], "2": ["py", "method", "Python method"], "3": ["py", "function", "Python function"]}, "objtypes": {"0": "py:module", "1": "py:class", "2": "py:method", "3": "py:function"}, "terms": {"": [0, 1, 2, 4, 5, 9, 11, 13, 25, 28, 29, 31, 32, 34, 35, 36, 40, 41, 42, 43, 44, 45, 46, 47, 49, 50, 51, 52, 55, 59, 61, 62, 64, 65, 66], "0": [0, 1, 2, 5, 10, 13, 16, 21, 24, 30, 31, 32, 33, 34, 35, 36, 37, 38, 40, 41, 42, 43, 45, 46, 47, 50, 51, 53, 55, 59, 61], "000": 42, "00222437221134802": [5, 64], "01": 51, "02": 51, "04": 40, "0496": [21, 33], "05": [13, 40, 50, 51], "06": 51, "08": 50, "09": [45, 46, 50], "1": [0, 1, 2, 3, 10, 13, 22, 24, 32, 34, 35, 37, 38, 40, 41, 42, 43, 44, 45, 46, 47, 48, 51, 53, 55, 56, 57, 59, 61, 62], "10": [1, 5, 6, 21, 24, 33, 42, 59, 61, 64], "100": [1, 21, 33, 37, 42, 47, 62], "1000": 42, "10th": 33, "1145": [21, 24], "1177": [5, 64], "11th": 33, "12": [35, 45, 46, 50], "1287": 6, "12th": 33, "13": 50, "14": 50, "15": [37, 50], "1579": [21, 33], "17": 50, "1948": 33, "195": 36, "1977": 62, "1lpngokujsx": 5, "1st": 50, "1st_person": 50, "1st_person_pl": 50, "1st_person_start": 50, "2": [1, 2, 34, 35, 41, 47, 59, 61, 62], "20": [37, 59], "2004": 42, "2007": [5, 42], "2009": 60, "2012": 55, "2013": [12, 16, 31, 32, 36, 37, 38, 41, 43, 50, 52, 54, 70], "2015": [53, 58, 60], "2016": 4, "2017": 13, "2018": [40, 44, 55], "2019": [35, 52], "2020": [18, 21, 24, 33, 49, 50, 56, 57], "2021": [1, 6, 43, 44], "2022": [13, 34], "2023": [1, 5, 30, 59, 61, 64], "2024": 40, "21": 59, "22": [41, 50], "2384068": 4, "24": [1, 61], "25": 47, "27": 50, "28": 50, "29": 50, "2nd": 50, "2nd_person": 50, "2nd_person_start": 50, "3": [0, 1, 2, 21, 34, 41, 42, 51, 59, 61, 71], "30": 50, "3000": 33, "32": [34, 50], "3432929": [21, 24], "35": 51, "36": 50, "38": 50, "39": 49, "39512260": 68, "3n": 59, "4": [0, 1, 5, 13, 21, 30, 33, 41, 42, 56, 61, 62], "4274": 6, "43": 50, "45": 50, "47": 50, "49": 50, "4pit4bqz6": 5, "4th": [21, 33], "5": [1, 5, 21, 30, 33, 37, 41, 59], "50": [1, 47], "52": 50, "53": 50, "57": 50, "58": 50, "5th": 33, "6": [1, 33, 43], "60": 51, "63": 50, "6365": 21, "64": 67, "68": 47, "6th": 33, "7": [30, 33, 48], "70": 50, "78": [35, 50], "7th": 33, "8": [1, 30, 33], "80": [21, 70], "82": 41, "85": 34, "86": 35, "87": 50, "89": [45, 46], "8th": 33, "9": [2, 5, 21, 30, 33, 40, 47, 50], "9123": 47, "92": 51, "93chall_readability_formula": [21, 70], "94": 15, "95": 47, "97": 51, "9855072464": 47, "9992": 47, "99954": 47, "9th": 33, "A": [1, 2, 4, 12, 13, 14, 15, 16, 17, 18, 19, 21, 23, 25, 28, 33, 34, 35, 37, 38, 40, 41, 44, 45, 46, 47, 49, 50, 51, 52, 57, 59, 60, 61, 62, 66, 67, 68, 70, 71, 72, 73], "And": [1, 62], "As": [1, 31, 35, 36, 40, 45, 61], "But": [1, 50, 62], "By": [1, 42, 50], "For": [0, 1, 31, 34, 37, 41, 42, 43, 47, 49, 54, 56, 59, 62, 65], "If": [0, 1, 2, 5, 21, 29, 30, 35, 45, 47, 50, 55, 61, 62, 63, 64, 67, 71], "In": [1, 21, 30, 31, 34, 35, 36, 37, 39, 41, 42, 45, 46, 47, 50, 55, 59, 61, 62], "It": [1, 2, 31, 32, 33, 36, 37, 41, 44, 45, 46, 50, 64, 65, 66, 67, 71], "NO": 37, "NOT": [1, 61], "No": [19, 53], "Not": 41, "One": [1, 37, 61], "That": [29, 55], "The": [1, 2, 3, 4, 5, 7, 9, 10, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 28, 30, 31, 32, 33, 34, 35, 36, 37, 38, 40, 41, 42, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 58, 59, 60, 63, 64, 65, 66, 67, 68, 69, 71, 72, 73], "Then": [1, 55, 61], "There": [1, 11, 32, 61, 66], "These": [1, 11, 17, 32, 34, 42, 48, 52, 61, 62, 69], "To": [0, 1, 29, 31, 34, 37, 40, 55, 56, 57, 61, 62], "WITH": 21, "Will": 50, "_deviat": 55, "_preprocessed_": 0, "abil": [13, 29], "abl": [31, 36, 61], "abort": 1, "about": [1, 12, 29, 31, 36, 41, 47, 61, 62], "abov": [1, 21, 34, 61], "abstract_id": 4, "accept": [0, 1, 58, 61], "access": [0, 1, 15, 61], "accommod": [28, 32, 39, 45, 46, 64, 65, 66], "accord": [21, 37, 59, 64, 70], "accordingli": 63, "account": [1, 29, 32, 42], "accus": 50, "achiev": [50, 62], "acknowledg": 49, "acm": [21, 24], "acommod": 36, "across": [1, 13, 28, 31, 34, 40, 41, 50, 62, 64, 73], "action": 59, "activ": [1, 9, 44, 55, 71], "actual": [41, 56], "ad": [61, 62, 71], "adapt": 59, "add": [0, 1, 2, 21, 51, 61], "addit": [0, 2, 32, 34, 42, 63, 69], "addition": [0, 30, 31, 32, 54], "address": 1, "adjac": 71, "adjust": [0, 21, 37, 63], "advanc": [31, 36], "advantag": 4, "adverb": [19, 31, 36], "adverb_limit": [19, 49], "affect": [0, 1, 29, 35, 44], "affirm": 49, "after": [0, 1, 31, 34, 36, 43, 61, 62, 64], "again": [32, 34], "against": [28, 31, 36, 52], "agarw": 62, "aggreg": [0, 1, 3, 11, 37, 44, 61, 62, 65, 66, 72], "agre": 47, "agreement": 49, "ah": [31, 36], "ai": 62, "aim": [39, 62], "airtim": [37, 62], "al": [1, 5, 16, 18, 21, 24, 30, 31, 32, 33, 34, 35, 36, 38, 42, 43, 44, 49, 50, 52, 53, 54, 56, 57, 58, 59, 60, 64], "algorithm": [56, 57], "align": [35, 51], "all": [0, 1, 2, 6, 12, 13, 15, 19, 22, 28, 30, 31, 34, 35, 36, 37, 40, 41, 42, 46, 48, 49, 51, 52, 55, 58, 61, 62, 64, 66, 71, 73], "allow": 1, "almaatouq": 59, "along": 1, "alongsid": 1, "alphabet": 49, "alphanumer": 71, "alreadi": [0, 1, 2, 4, 10, 12, 16, 67], "also": [0, 1, 2, 28, 30, 31, 32, 34, 36, 37, 38, 42, 47, 51, 54, 60, 61, 62, 64, 65, 67, 69, 71], "alsobai": 59, "altern": 59, "although": [1, 23, 31, 36], "alwai": [1, 55], "am": [31, 36, 42, 54, 62], "amaz": [48, 56], "ambient": 32, "american": 33, "ami": [47, 59, 62], "amic": 62, "among": [36, 37, 52, 55, 62], "amongst": [6, 35, 48], "an": [1, 2, 5, 8, 11, 12, 13, 21, 29, 30, 31, 32, 33, 34, 36, 38, 40, 41, 42, 45, 47, 48, 50, 51, 52, 54, 59, 60, 61, 62, 63, 65, 66, 68], "analys": [1, 62], "analysi": [0, 1, 11, 52, 62, 67, 71], "analyt": 62, "analyz": [0, 1, 2, 13, 14, 16, 17, 19, 20, 21, 22, 24, 28, 43, 52, 62, 67, 71], "analyze_first_pct": [0, 1, 2], "angri": 47, "ani": [0, 1, 29, 31, 33, 38, 54, 62, 71], "annot": [17, 50], "anoth": [30, 34, 36, 48], "answer": 29, "anybodi": [31, 36], "anyth": [1, 2, 23, 31, 36, 56], "anywher": [31, 36], "apartment": 42, "api": 47, "api_refer": 24, "apolog": [17, 50], "apologi": 49, "appear": [0, 15, 28, 31, 37, 38, 42, 64], "append": [1, 17, 64, 65, 66, 67], "appli": [4, 13, 18, 62, 64, 69], "applic": [29, 71], "appreci": 50, "approach": [32, 38, 42, 45, 46, 49, 53, 64], "appropri": [31, 69], "ar": [0, 1, 2, 3, 5, 9, 10, 11, 15, 17, 19, 21, 23, 28, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 45, 46, 47, 48, 49, 51, 54, 55, 56, 57, 58, 59, 61, 62, 63, 64, 65, 66, 67, 69, 71], "arcross": 34, "area": 62, "aren": [31, 36], "around": 2, "arous": 48, "arrai": [6, 8, 68], "articl": [37, 50], "ask": [20, 47, 54], "ask_ag": 49, "aspect": [50, 62], "assert_key_columns_pres": 71, "assign": [1, 31, 36, 38, 45, 46, 52, 59, 61, 63, 71], "assign_chunk_num": 69, "associ": [4, 15, 21, 29, 30, 31, 32, 36, 40, 45, 46, 47, 48, 61], "assum": [0, 1, 2, 10, 12, 16, 23, 31, 41, 60, 61, 71], "assumpt": [1, 41, 61], "asterisk": 22, "attribut": [1, 11, 34, 51, 52, 56, 62], "author": [5, 31, 36, 59], "auto": 2, "automat": [0, 1, 61, 69], "auxiliari": [31, 36], "avail": [1, 61, 62, 63, 64, 67], "averag": [11, 13, 28, 30, 33, 34, 35, 40, 41, 46, 52, 64, 65, 66, 72], "avil": 62, "avoid": 30, "awar": 29, "awesom": 62, "b": [4, 34, 35, 45, 46, 55, 62], "back": 62, "bag": [32, 38, 42, 45, 46, 49, 53, 56, 57], "bare_command": [19, 49], "base": [0, 1, 2, 15, 18, 19, 31, 32, 34, 35, 36, 37, 40, 42, 51, 52, 53, 54, 55, 56, 57, 61, 62, 63, 64, 65, 66, 71], "basic": [10, 11, 12, 16, 61, 62], "basic_featur": 11, "batch": 67, "batch_num": 1, "batch_siz": 67, "bay": [56, 57], "bbevi": 18, "becaus": [1, 2, 12, 21, 31, 36, 40, 56, 61], "becom": [44, 61, 62], "been": [1, 2, 12, 16, 31, 36, 61], "befor": [0, 1, 2, 17, 31, 36, 45, 48], "beforehand": 64, "begin": [34, 54, 58, 61, 62, 63], "behavior": [0, 2, 62, 63], "being": [4, 13, 14, 16, 17, 20, 21, 24, 31, 32, 36, 43, 47, 51, 55, 56, 60], "belong": [1, 42], "below": [1, 11, 21, 33, 36, 45, 48, 51, 61, 62, 69], "ber": 54, "bert": [0, 1, 31, 35, 36, 39, 46, 61, 64, 67], "bert_path": 67, "bert_sentiment_data": [1, 61, 64], "best": 29, "better": [31, 61], "between": [4, 6, 13, 21, 23, 24, 28, 30, 31, 34, 35, 36, 37, 40, 45, 46, 55, 58, 59, 62, 64, 65], "betwen": 34, "beyond": 2, "big": 59, "binari": [10, 32, 38], "blame": 47, "blob": [1, 24, 61], "block": [22, 32, 48, 59], "blog": 15, "bold": [22, 64], "bool": [2, 63, 67, 71], "bootstrap": 62, "both": [1, 2, 42, 52, 54, 55, 59, 62], "bother": 50, "bottom": 59, "bought": 41, "bound": [29, 35, 36, 37, 42, 52, 55], "boundari": [34, 35], "break": [22, 48, 64], "brief": 44, "broader": 52, "broken": 59, "btw": 50, "bug": [1, 61], "build": [1, 7, 34, 45, 46, 62], "built": 11, "built_spacy_n": 15, "bullet": [22, 48, 64], "bunch": 59, "burst": 58, "bursti": [1, 11, 39, 58, 61, 65], "by_the_wai": 49, "c": [12, 34, 35, 45, 46, 62], "cach": [0, 1, 2, 51, 61], "calcul": [2, 5, 11, 12, 16, 18, 21, 28, 33, 41, 48, 49, 50, 56, 57, 58, 60, 62, 63, 64, 65, 66, 67, 68, 72, 73], "calculate_chat_level_featur": [1, 61, 69], "calculate_conversation_level_featur": 69, "calculate_hedge_featur": 64, "calculate_id_scor": 13, "calculate_info_divers": 65, "calculate_named_ent": 15, "calculate_num_question_na": 20, "calculate_politeness_senti": 64, "calculate_politeness_v2": 64, "calculate_team_bursti": 65, "calculate_textblob_senti": 64, "calculate_user_level_featur": 69, "calculate_vector_word_mimicri": 64, "calculate_word_mimicri": 64, "call": [1, 2, 8, 13, 61, 62, 64, 69], "can": [0, 1, 11, 23, 31, 32, 33, 34, 36, 37, 42, 43, 44, 47, 48, 49, 50, 52, 54, 60, 61, 62, 69], "can_you": 49, "cannot": [1, 31, 36, 45, 46, 49, 62], "cao": [21, 24, 33, 43, 44, 56, 57, 62], "cap": [22, 48, 64], "capit": [0, 2, 48], "captur": [29, 30, 32, 34, 35, 38, 41, 42, 55], "caract": 40, "cardiffnlp": [1, 61], "carefulli": 60, "carri": 31, "casa_token": 5, "case": [1, 13, 16, 28, 29, 30, 31, 36, 37, 41, 45, 46, 51, 55, 56, 59, 61], "casual": 43, "categori": [21, 32, 45, 46, 49, 52], "caus": [31, 32, 36, 59], "caveat": 1, "center": 62, "central": 34, "centroid": [34, 66], "certain": [5, 19, 30, 42, 45, 46, 49], "certainli": 42, "certainti": [11, 38, 39, 42, 64, 67], "cfm": 4, "chall": [1, 21, 39, 64, 70], "chang": [1, 34, 50, 61, 71], "charact": [2, 3, 15, 19, 37, 49, 62, 64, 65, 66, 71], "characterist": 62, "chat": [0, 1, 2, 4, 5, 6, 7, 8, 12, 13, 14, 16, 23, 25, 28, 29, 32, 35, 36, 41, 44, 45, 46, 49, 59, 61, 63, 64, 65, 66, 67, 68, 69, 71, 72, 73], "chat_data": [2, 6, 7, 8, 26, 27, 28, 63, 64, 65, 66, 67, 71], "chat_df": 14, "chat_featur": [1, 61], "chat_level_data": 72, "chat_level_featur": 2, "chatlevelfeaturescalcul": [1, 2, 17, 21, 61, 64, 69], "chats_data": 73, "check": [19, 23, 44, 64, 67, 71], "check_embed": [1, 61, 69], "chen": 62, "choos": 60, "chose": 1, "chronolog": 1, "chunk": [34, 59, 63], "chunk_num": 63, "circlelyt": 13, "citat": [21, 24], "cite": 50, "clarif": [16, 32, 64], "class": [1, 2, 31, 61, 62, 64, 65, 66], "classif": [21, 64], "classifi": [16, 21, 50, 56, 57], "classify_ntri": 16, "classify_text_dalechal": 21, "clean": [2, 17, 19, 67], "clean_text": 19, "clear": 1, "close": [31, 48, 62], "closer": [45, 46, 59], "clue": 62, "cmu": 12, "code": [6, 18, 29, 32, 51, 55, 61, 62, 68], "coeffici": [4, 39, 62, 65, 68], "coerce_to_date_or_numb": 23, "cognit": 62, "col": 2, "colab": [0, 1], "collabor": [59, 62], "collaps": 2, "collect": [1, 2, 34, 49, 50, 52, 61, 62], "colleg": 33, "column": [0, 2, 4, 6, 7, 8, 9, 12, 13, 14, 16, 18, 23, 25, 28, 51, 56, 62, 63, 64, 65, 66, 67, 68, 71, 72, 73], "column_count_frequ": 28, "column_count_mim": 28, "column_mimc": 28, "column_nam": 71, "column_to_summar": 72, "com": [1, 2, 4, 5, 13, 15, 18, 64, 68, 71], "comb": 62, "combin": [0, 1, 6, 28, 64, 71], "come": [1, 12, 13, 21, 32, 33, 58, 61], "comm": [1, 61], "command": [1, 61], "comment": 48, "commit": 23, "commit_data": 19, "common": [0, 32, 62, 64], "commonli": 37, "commun": [0, 1, 11, 44, 48, 55, 60, 62, 64], "companion": 1, "compar": [2, 31, 35, 44, 45, 52, 64, 71, 73], "compat": [1, 61], "complement": [31, 36], "complet": [1, 2, 31, 55], "complex": [0, 35, 43, 50, 62], "compon": 50, "comprehens": [33, 48], "compress": 71, "comput": [0, 2, 4, 5, 6, 10, 11, 12, 13, 14, 28, 29, 30, 31, 34, 35, 36, 37, 40, 41, 42, 45, 46, 49, 52, 55, 62, 64, 65, 66, 69, 73], "compute_frequ": 28, "compute_frequency_per_conv": 28, "compute_vectors_from_preprocess": [0, 2], "computetf": 28, "conain": 61, "concat_bert_featur": [1, 61, 64], "concaten": [19, 49, 64, 71], "concentr": 55, "concept": [29, 39, 42, 62], "conceptu": [61, 62], "concis": 43, "concret": 29, "conduct": 1, "confid": [2, 5, 15, 30, 47, 64], "conflict": 62, "confound": 44, "congruent": 34, "conjection_seper": 19, "conjunct": [19, 31, 36, 49], "conjunction_start": 49, "connect": 39, "conscious": 35, "consecut": 22, "consequ": 0, "consid": [1, 33, 37], "consider": [61, 62], "consist": [31, 36, 40, 41], "constitut": 41, "constrain": [34, 35], "construct": [11, 55, 62], "constructor": 47, "consult": 5, "contain": [1, 2, 3, 4, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17, 18, 19, 23, 25, 28, 29, 30, 35, 38, 42, 47, 49, 55, 61, 62, 63, 64, 67, 71, 72, 73], "content": [0, 1, 12, 13, 28, 34, 36, 39, 41, 42, 45, 46, 62, 64, 67], "content_mimicry_scor": 28, "content_mimicry_score_per_conv": 28, "content_word_accommod": 31, "content_word_accommodation_per_conv": 31, "content_word_mimicri": 28, "context": [2, 32, 42, 48, 62, 71], "continu": [56, 57], "contract": 49, "contrast": 39, "contribut": [13, 34, 37, 62], "control": 1, "conv": [1, 61], "conv_data": [2, 65], "conv_features_al": [1, 61], "conv_features_bas": [1, 61], "conv_level_featur": 2, "conv_to_float_arr": 8, "convei": [6, 34, 52], "conveni": [1, 61], "convers": [0, 2, 3, 4, 6, 7, 8, 9, 12, 13, 23, 25, 28, 29, 31, 34, 35, 36, 37, 40, 41, 43, 44, 45, 46, 47, 48, 49, 50, 52, 55, 58, 59, 61, 63, 64, 65, 66, 68, 71, 72, 73], "conversation_id": [2, 28, 61, 71], "conversation_id_col": [0, 1, 2, 4, 6, 7, 8, 9, 13, 23, 25, 26, 27, 61, 63, 64, 65, 66, 68, 72, 73], "conversation_num": [0, 1, 2, 6, 7, 66, 71, 73], "conversationlevelfeaturescalcul": [2, 65, 69], "convert": [8, 41, 49, 71], "convict": 5, "convokit": [17, 50, 62, 64], "coordin": 55, "copi": [0, 1], "copular": [31, 36], "core": [34, 69], "cornel": 17, "corpu": 50, "corrado": 37, "correl": [41, 55], "correspond": [30, 34, 35, 40, 49, 55, 66], "cosin": [6, 7, 13, 28, 31, 34, 35, 36, 40, 45, 46, 65], "could": [1, 31, 33, 36, 50, 54], "could_you": 49, "couldn": [31, 36], "count": [1, 3, 12, 14, 15, 16, 19, 21, 25, 28, 30, 31, 32, 36, 39, 41, 43, 44, 49, 52, 53, 54, 56, 58, 64, 65, 66], "count_all_cap": 22, "count_bullet_point": 22, "count_charact": 3, "count_difficult_word": 21, "count_ellips": 22, "count_emoji": 22, "count_emphasi": 22, "count_line_break": 22, "count_link": 22, "count_match": [19, 49], "count_messag": 3, "count_numb": 22, "count_parenthes": 22, "count_quot": 22, "count_responding_to_someon": 22, "count_spacy_match": 19, "count_syl": 21, "count_turn": 25, "count_turn_taking_index": 25, "count_user_refer": 22, "count_word": 3, "countabl": 65, "countd": 36, "counterfactu": 50, "cours": [16, 31, 34, 36, 63], "cover": 28, "creat": [0, 1, 2, 13, 19, 31, 40, 42, 61, 62, 64, 65, 66, 71], "create_chunk": 63, "create_chunks_messag": 63, "create_cumulative_row": 71, "credit": 33, "crowd": 13, "csv": [1, 2, 61, 62, 67], "cumul": [1, 2, 71], "cumulative_group": [0, 1, 2, 71], "current": [1, 11, 23, 31, 34, 35, 36, 40, 45, 46, 58, 61, 64, 71], "curt": 43, "custom": [0, 62], "custom_featur": [0, 1, 2, 61], "customiz": 62, "cut": 1, "cutoff": [2, 15, 47, 64], "d": [1, 31, 34, 36, 61], "dale": [1, 21, 39, 64, 70], "dale_chall_help": 21, "danescu": 50, "dash": 22, "data": [0, 2, 6, 7, 8, 9, 13, 19, 20, 32, 37, 40, 41, 47, 51, 55, 61, 62, 63, 64, 65, 66, 67, 68, 71, 72, 73], "datafram": [0, 1, 2, 4, 6, 7, 8, 9, 12, 13, 14, 15, 16, 17, 18, 19, 23, 25, 28, 37, 47, 49, 59, 61, 62, 63, 64, 65, 66, 67, 68, 71, 72, 73], "dataknowsal": 15, "dataset": [1, 2, 9, 12, 13, 28, 31, 41, 47, 52, 61, 64, 65, 66, 73], "date": [1, 61], "datetim": [23, 58], "dcosta": 62, "deal": [50, 59], "death": 1, "debat": 59, "decid": 62, "decis": [1, 13, 62], "declar": [1, 62, 69], "deepli": 62, "default": [0, 1, 2, 5, 13, 16, 30, 34, 35, 42, 47, 62, 63, 66, 67, 71, 73], "defer": [17, 50], "defin": [0, 11, 21, 31, 34, 36, 40, 59, 62, 64, 65, 66, 70], "definit": [1, 3, 44], "degre": [6, 30, 36, 45, 46, 55], "delet": 29, "deliber": 1, "demo": 61, "democrat": 1, "demystifi": 62, "denomin": 59, "densiti": 60, "dep_": 49, "dep_pair": 19, "depend": [0, 1, 10, 19, 32, 49, 52, 61, 63], "deriv": [2, 11, 65, 66], "describ": [1, 11, 62], "descript": [1, 61], "design": [0, 1, 2, 13, 34, 62], "desir": [2, 63, 72], "detail": [0, 33, 41, 43, 61, 62], "detect": [1, 32, 37, 38, 47, 48, 49, 54], "determin": [13, 18, 31, 35, 36, 40, 45, 46, 71], "dev": 24, "develop": [5, 37, 40, 62], "deviat": [4, 5, 29, 40, 41, 55, 58, 65, 72, 73], "df": [4, 8, 9, 12, 13, 16, 18, 23, 28, 63, 71], "dict": [17, 19, 28, 67], "dictionari": [1, 15, 17, 19, 28, 30, 42, 49, 61, 67], "did": [1, 31, 36, 37, 47, 50, 54, 62], "didn": [31, 36], "differ": [0, 1, 2, 4, 11, 12, 23, 28, 29, 31, 34, 36, 37, 39, 40, 44, 45, 46, 47, 49, 55, 62, 63, 64, 65, 66, 71], "differenti": [49, 59], "difficult": [21, 33], "difficult_word": 21, "difficulti": 33, "dimens": [40, 62], "dimension": [34, 35], "dinner": 41, "direct": [34, 43, 45, 47, 50, 69], "direct_quest": [32, 50, 54], "direct_start": 50, "directli": [1, 62, 69], "directori": [0, 2, 19, 61, 65, 67], "disagr": 49, "disagre": 51, "discours": [31, 36], "discret": [31, 36, 45, 46], "discurs": [0, 1, 6, 8, 39, 40, 61, 65, 66], "discursive_divers": 11, "discus": 8, "discuss": [0, 1, 31, 34, 39, 40, 42, 43, 61, 62, 71], "dispers": 68, "displai": [1, 34, 42, 46, 61], "dispos": 1, "distanc": [34, 35, 40], "distinct": [31, 36, 59], "distinguish": 59, "distribut": 31, "div": 16, "diverg": [6, 34, 35], "divers": [0, 1, 6, 8, 13, 39, 61, 65], "divid": [16, 34, 59, 63], "dl": [21, 24], "do": [0, 1, 29, 31, 34, 36, 37, 43, 49, 50, 54, 62, 69], "doc": 19, "doc_top": 13, "document": [1, 17, 61, 69], "doe": [1, 2, 29, 40, 42, 43, 45, 47, 54, 61, 71], "doesn": [0, 1, 2, 29, 31, 36, 45, 61], "doi": [5, 6, 21, 24, 64], "domain": [31, 50], "don": [31, 36, 49, 54, 62, 67], "done": [2, 50], "dot": 22, "doubl": 30, "down": [31, 36], "download": [1, 61], "download_resourc": [1, 61], "downstream": [17, 62], "dozen": 62, "drive": [62, 69], "driver": [2, 61, 64, 65, 66], "drop": [0, 2, 64], "due": [34, 59], "duncan": 62, "duplic": [1, 2, 71], "durat": [58, 63], "dure": [2, 55, 59, 62], "dynam": [59, 61], "e": [0, 1, 2, 4, 15, 20, 29, 30, 31, 32, 34, 35, 36, 37, 38, 41, 42, 47, 48, 49, 52, 54, 56, 59, 61, 63, 65, 66, 71], "e2": [21, 70], "each": [0, 1, 2, 3, 4, 7, 8, 9, 11, 12, 15, 17, 19, 23, 25, 28, 30, 31, 34, 35, 36, 37, 40, 41, 42, 44, 45, 46, 47, 49, 50, 51, 52, 55, 59, 61, 62, 63, 64, 65, 66, 67, 68, 69, 71, 72, 73], "earlier": [0, 1, 2, 42], "easi": [1, 21, 62, 70], "easier": 21, "easili": 33, "easy_word": 21, "eat": 34, "echo": 31, "econom": 37, "edg": [29, 59], "edu": [1, 12, 16, 17, 70], "effect": [1, 41], "effici": 1, "effort": 55, "either": [20, 23, 52, 55], "elaps": [23, 58], "element": [1, 6], "ellips": [22, 48, 64], "els": [1, 22, 47, 64], "embed": [8, 31, 34, 35, 36, 45, 46, 65, 66, 67, 69], "emili": [30, 35, 45, 46, 47, 59, 62], "emoji": [22, 48, 64], "emot": [1, 61], "emoticon": 48, "emphas": [22, 48, 64], "emphasi": 48, "empirica": [1, 2, 71], "emploi": 45, "empti": [0, 2, 13], "en": [1, 21, 24, 61, 70], "en_core_web_sm": [1, 61], "enabl": 71, "enclos": 22, "encod": [1, 8], "encompass": 62, "encount": [1, 34, 35, 61], "encourag": 64, "end": [0, 1, 15, 20, 23, 34, 54, 62, 63], "engag": 43, "engin": 2, "english": [34, 42], "enjoi": 62, "ensur": [0, 1, 40, 49, 61, 63, 67, 71], "entir": [1, 12, 28, 31, 36, 40, 41, 52, 59, 62, 73], "entiti": [0, 1, 2, 15, 39, 64], "entityrecogn": 47, "entri": [1, 28, 61], "ep8dauru1ogvjurwdbof5h6ayfbslvughjyiv31d_as6ppbt": 5, "equal": [1, 21, 23, 34, 37, 40, 55, 59, 61, 62, 63], "equival": [0, 1, 41, 55, 61], "eric": 62, "error": [1, 16, 61], "especi": [41, 62], "essenti": [51, 71], "establish": 31, "estim": 31, "et": [1, 5, 16, 18, 21, 24, 30, 31, 32, 33, 34, 35, 36, 38, 42, 43, 44, 49, 50, 52, 53, 54, 56, 57, 58, 59, 60, 64], "etc": [10, 15, 16, 17, 42], "evalu": [5, 47, 50], "evan": 62, "even": [0, 1, 2, 34, 37, 42, 62, 63, 67], "evenli": [34, 55], "event": [1, 34, 55, 61], "ever": 62, "everi": [1, 4, 13, 31, 34, 35, 36, 61, 62], "everybodi": [31, 36], "everyon": [31, 36, 47, 62], "everyth": [31, 36, 56], "everywher": [31, 36], "evolut": 35, "evolv": [35, 71], "exactli": [1, 2, 71], "examin": [40, 62, 63], "exampl": [0, 10, 11, 15, 21, 24, 29, 31, 32, 34, 37, 42, 43, 48, 50, 51, 54, 56, 59, 60, 61, 62], "example_data": 1, "exce": 15, "exchang": [12, 35, 39, 40, 45, 55, 64], "exclud": [0, 41, 42], "exclus": [41, 42], "excus": 32, "exhibit": 35, "exist": [0, 1, 2, 55, 61, 62, 63, 64, 67], "expand": 49, "expect": [1, 37, 47], "expected_valu": 47, "explain": [0, 29], "explan": [29, 43], "explor": [61, 62], "express": [5, 14, 30, 31, 32, 36, 38, 42, 64], "extend": 1, "extens": [43, 44], "extent": [1, 4, 7, 12, 31, 34, 35, 37, 51, 55, 59, 61], "extern": 48, "extra": 51, "extract": [1, 17, 19, 28, 40, 50, 64], "extrem": [55, 56, 57], "face": [1, 51, 61], "facilit": [62, 71], "fact": [4, 35, 50, 54, 59], "factual": [17, 24, 50], "fail": [1, 61], "fals": [0, 1, 2, 31, 54, 61, 71], "famili": 42, "far": [34, 35, 46, 50, 62], "faster": 14, "feat_count": 19, "featuer": 2, "featur": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 63, 64, 65, 66, 67], "feature_build": [0, 1, 61], "feature_dict": [1, 61], "feature_method": [64, 65], "feature_nam": [1, 61], "featurebuild": [0, 2, 47, 69], "features_conceptu": [1, 61], "few": [48, 62], "fewer": [12, 60], "fflow": 11, "field": [13, 17], "file": [0, 2, 12, 14, 19, 61, 65, 67], "filenam": [1, 2, 19], "filenotfounderror": 67, "fill": 71, "filler": [37, 60], "filler_paus": 49, "filter": [19, 62], "final": [1, 2, 34, 42, 62], "find": [1, 19, 28, 50], "fingertip": 62, "finit": 55, "first": [0, 1, 2, 11, 12, 16, 19, 31, 34, 35, 36, 39, 40, 41, 42, 45, 46, 49, 52, 54, 59, 61, 62, 64, 70, 71], "first_person": 12, "first_person_plur": 49, "first_person_raw": [12, 16], "first_person_singl": 49, "five": 37, "fix": 52, "flag": 71, "float": [2, 4, 5, 6, 8, 10, 13, 14, 16, 21, 24, 25, 28, 68], "floor": 59, "flow": [0, 1, 7, 31, 36, 39, 41, 45, 46, 61, 64], "focal": [31, 36], "focu": 41, "folder": [0, 1, 19], "follow": [1, 2, 16, 17, 29, 31, 32, 33, 41, 42, 47, 49, 50, 53, 55, 59, 60, 61, 64, 65], "for_m": 49, "for_you": 49, "forc": [0, 1, 61], "form": 1, "formal": [1, 61], "formal_titl": 49, "format": [1, 8, 17, 22, 47, 48, 61, 62, 64], "former": [45, 46], "formula": [33, 42, 59, 64, 70], "fornt": 1, "forward": [0, 1, 7, 39, 41, 61, 64], "forward_flow": 35, "found": [1, 5, 28, 30, 33, 61, 69], "four": [1, 8], "fourth": 33, "frac": 55, "fraction": 59, "framework": [49, 50, 62], "frequenc": [28, 31, 44, 64], "frequency_dict": 28, "fridai": 34, "from": [0, 1, 2, 4, 5, 6, 8, 9, 10, 11, 12, 13, 14, 16, 19, 21, 28, 29, 31, 32, 33, 34, 35, 36, 39, 41, 42, 49, 50, 51, 53, 55, 56, 57, 58, 61, 62, 64, 65, 66, 67, 71], "full": [1, 2, 28, 37], "full_empirical_dataset": 1, "fulli": [32, 48], "functinon": 12, "function": [1, 2, 3, 4, 10, 11, 12, 13, 14, 16, 20, 21, 23, 28, 31, 39, 44, 45, 46, 50, 56, 57, 60, 61, 62, 63, 64, 65, 66, 67, 69, 70, 71, 72, 73], "function_mimic_word": 28, "function_mimicry_scor": 28, "function_word_mimicri": 28, "function_word_refer": 28, "fund": 62, "further": [1, 2, 61, 71], "futur": [23, 66], "g": [0, 1, 4, 15, 20, 29, 31, 32, 36, 37, 38, 41, 42, 47, 48, 52, 54, 59, 61, 63, 65, 66, 71], "game": [1, 2, 59, 71], "gaug": [33, 52], "gener": [0, 2, 9, 11, 12, 16, 21, 31, 34, 35, 36, 40, 42, 45, 46, 49, 51, 59, 67, 69, 71, 72], "generaliz": 23, "generate_bert": 67, "generate_certainty_pkl": 67, "generate_lexicon_pkl": 67, "generate_vect": 67, "gensim": 40, "get": [0, 16, 20, 21, 28, 30, 31, 36, 49, 66], "get_all_dd_featur": 11, "get_averag": 72, "get_centroid": 66, "get_certainti": 5, "get_certainty_scor": 64, "get_content_words_in_messag": 28, "get_conversation_level_aggreg": 65, "get_cosine_similar": 6, "get_dale_chall_easy_word": [21, 70], "get_dale_chall_score_and_classf": 64, "get_dd": 6, "get_dd_featur": 8, "get_dep_pair": [19, 49], "get_dep_pairs_noneg": [19, 49], "get_discursive_diversity_featur": 65, "get_first_pct_of_chat": 2, "get_first_person_word": [12, 70], "get_forward_flow": [7, 64], "get_function_word": 70, "get_function_words_in_messag": 28, "get_gini": 68, "get_gini_featur": 65, "get_info_divers": 13, "get_info_exchange_wordcount": 12, "get_liwc_count": 14, "get_max": 72, "get_mimicry_bert": 28, "get_min": 72, "get_moving_mimicri": 28, "get_named_ent": 64, "get_nan_vector": 27, "get_polarity_scor": 24, "get_politeness_strategi": 17, "get_politeness_v2": 18, "get_proportion_first_pronoun": 16, "get_question_word": 70, "get_reddit_featur": 64, "get_senti": 67, "get_stdev": 72, "get_subjectivity_scor": 24, "get_sum": 72, "get_team_bursti": 4, "get_temporal_featur": [4, 64], "get_time_diff": 23, "get_time_diff_startend": 23, "get_turn": 25, "get_turn_id": 71, "get_turn_taking_featur": 65, "get_unique_pairwise_combo": 6, "get_user_average_datafram": 72, "get_user_level_aggreg": 65, "get_user_level_averaged_featur": 66, "get_user_level_summary_statistics_featur": 66, "get_user_level_summed_featur": 66, "get_user_network": [11, 66], "get_user_sum_datafram": 72, "get_variance_in_dd": 26, "get_within_person_disc_rang": 27, "get_word_ttr": 16, "get_zscore_across_all_chat": 73, "get_zscore_across_all_convers": 73, "gina": 62, "gini": [39, 62, 65, 68], "gini_coeffici": [11, 69], "github": [0, 1, 2, 18, 71], "give": [0, 1, 29, 37], "give_ag": 49, "given": [5, 6, 13, 14, 28, 30, 31, 33, 34, 35, 36, 40, 41, 55, 59, 66, 67, 71], "go": [1, 34, 35, 45, 46, 50, 62], "goal": 62, "good": [50, 56, 62], "goodby": 49, "googl": [0, 1], "got": [31, 36], "gotta": [31, 36], "grade": 33, "grader": 21, "grai": 35, "grammat": 36, "granularli": 35, "grate": 62, "gratitud": [17, 49, 50], "great": [47, 50, 51, 56, 59, 60, 62], "greater": 55, "greet": 50, "groceri": 41, "group": [0, 1, 2, 4, 13, 29, 33, 34, 41, 52, 59, 62, 68, 71, 72], "grouping_kei": [0, 1, 2, 71], "gt": 22, "guess": 10, "gun": 1, "gy": 15, "gym": 34, "ha": [0, 1, 2, 32, 34, 35, 37, 42, 43, 46, 52, 54, 55, 56, 59, 61, 62, 63, 71], "had": [1, 31, 36, 54, 61], "hadn": [31, 36], "handl": [19, 29, 71], "happen": [1, 2, 55, 62, 63], "happi": 42, "harder": 21, "hashedg": [17, 50], "hasn": [31, 36], "hasneg": 50, "hasposit": 50, "hate": 31, "have": [0, 1, 2, 10, 12, 16, 31, 34, 36, 37, 40, 41, 42, 45, 46, 50, 54, 59, 60, 61, 62, 71], "haven": [31, 36], "he": [1, 31, 36], "header": 18, "hear": 32, "heart": [61, 62], "heat": 1, "heavi": 62, "hedg": [11, 30, 39, 49, 50, 64], "hei": [1, 35, 45, 46, 50], "helena": [47, 62], "hello": [0, 43, 49], "help": [0, 31, 34, 36, 43, 45, 46, 52, 58, 69], "helper": [23, 67], "her": [30, 31, 36], "here": [0, 1, 29, 31, 34, 41, 42, 47, 61, 66], "herself": [31, 36], "hesit": [60, 64], "hi": [31, 35, 36, 43, 45, 46], "hierach": 71, "hierarch": 71, "high": [0, 1, 2, 61, 62, 71], "higher": [21, 31, 34, 36, 40, 41, 42, 44, 45, 46, 55, 60], "highest": 71, "highlight": 1, "him": [31, 36], "himself": [31, 36], "hmm": [31, 36], "hoc": 62, "hold": 31, "hole": 62, "home": 42, "homework": 34, "homonym": 31, "hood": 1, "hope": 35, "host": [45, 46], "hour": 48, "how": [1, 5, 28, 29, 30, 31, 34, 35, 36, 39, 43, 45, 51, 52, 54, 56, 62], "howev": [0, 1, 3, 35, 40, 42, 44, 54, 56, 61, 62], "howitwork": 1, "html": [1, 15, 17, 24, 61], "http": [1, 2, 4, 5, 6, 12, 13, 15, 16, 17, 18, 21, 24, 41, 45, 46, 47, 61, 64, 68, 70, 71], "hu": [1, 42, 62], "hug": [1, 51, 61], "huggingfac": 1, "huh": [31, 32, 36], "human": [37, 50, 62], "hyperlink": 48, "hyphen": [1, 61], "hypothet": 42, "i": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 19, 20, 21, 22, 23, 24, 25, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 71, 73], "iby1": 5, "id": [2, 4, 7, 23, 28, 62, 66, 68, 71, 72, 73], "idea": [12, 35, 40, 47, 51], "ident": [34, 35], "identif": 1, "identifi": [0, 1, 2, 4, 8, 9, 15, 23, 25, 30, 31, 41, 47, 50, 52, 61, 63, 64, 71, 72], "identiif": [13, 71], "ignor": [1, 32], "illustr": [1, 41, 48, 62], "imagin": 1, "immedi": [31, 35, 64], "impact": [1, 60], "impersonal_pronoun": 49, "implement": 64, "impli": 37, "import": [31, 32, 36, 44, 45, 62, 69], "incent": 13, "includ": [0, 1, 2, 10, 17, 22, 31, 32, 35, 36, 42, 45, 46, 51, 52, 56, 61, 62, 66, 71], "inclus": [13, 71], "incongru": [8, 34], "incorpor": [1, 42, 45, 46], "increas": [1, 42, 62], "increment": 71, "independ": 1, "index": [1, 2, 4, 13, 25, 37, 39, 55, 61, 65], "indic": [1, 2, 16, 21, 22, 30, 32, 34, 35, 36, 40, 41, 43, 44, 48, 49, 50, 52, 55, 60, 63, 71], "indirect": 50, "indirect_btw": 50, "indirect_greet": 50, "indirectli": 69, "individu": [0, 1, 5, 11, 31, 34, 37, 45, 50, 59, 60, 62, 72], "inequ": 37, "infer": [1, 51, 67], "influenc": 1, "info": [13, 18, 64], "info_divers": 13, "info_exchang": 64, "info_exchange_wordcount": [41, 64], "info_exchange_zscor": 11, "inform": [6, 11, 12, 13, 24, 32, 34, 39, 48, 62, 64, 65], "informal_titl": 49, "information_divers": 11, "initi": [2, 62, 63, 64, 65, 66], "input": [0, 2, 4, 6, 12, 13, 14, 15, 16, 19, 20, 22, 28, 50, 55, 60, 62, 63, 64, 65, 66, 67, 71, 72], "input_column": [65, 66], "input_data": [25, 68, 72], "input_df": [1, 2, 61, 71], "inquiri": [30, 39, 52], "insid": 1, "insight": 1, "inspir": 15, "instal": [1, 61, 62], "instanc": [1, 22, 50, 59, 66], "instanti": 2, "insteac": 1, "instead": [1, 2, 62], "instruct": [1, 61], "int": [2, 3, 10, 13, 15, 16, 19, 20, 22, 28, 63, 64, 67], "intact": 71, "integ": [13, 40, 47], "intend": 59, "interact": [1, 11, 43, 44, 62, 69], "interconnect": 62, "interest": [1, 61, 62], "interfac": 62, "intermedi": [59, 64], "intern": 29, "interpret": [0, 23], "interrupt": 59, "interv": [58, 65], "introduc": 62, "introduct": [11, 61], "invalid": 67, "invers": 64, "involv": [41, 62, 65], "io": [1, 24, 47, 61], "ipynb": [0, 1], "is_hedged_sentence_1": 10, "isn": [1, 31, 36], "issu": [1, 31, 36, 37, 42, 61], "ital": 64, "italic": 22, "item": [0, 71], "its": [0, 2, 15, 31, 35, 36, 40, 41, 47, 54, 55, 64, 69], "itself": [23, 31, 36, 44], "john": 1, "jonson": 62, "journal": [5, 64], "json": [1, 61], "jurafski": 70, "juri": 1, "juries_df": 1, "jury_conversations_with_outcome_var": 1, "jury_feature_build": 1, "jury_output": 1, "jury_output_chat_level": [1, 61], "jury_output_turn_level": 1, "just": [1, 2, 31, 36, 46, 50, 59, 61, 62], "katharina": 34, "keep": [1, 71], "kei": [1, 2, 4, 19, 28, 30, 54, 61, 71], "keyerror": 71, "keyword": [19, 49], "kind": [10, 62], "kitchen": 42, "knob": 0, "know": [1, 30], "knowledg": 29, "known": [1, 32, 61], "kumar": 62, "kw": 19, "lab": [1, 2, 62, 71], "label": [1, 15, 21, 51], "lack": [31, 38, 45, 46], "languag": [15, 31, 34, 42, 50, 62], "larg": [31, 69], "larger": [0, 31, 61], "last": [1, 31], "late": 32, "later": [0, 1, 2, 42, 61], "latest": [1, 61], "latter": [31, 36], "lda": [13, 40], "learn": [1, 61, 62], "least": [10, 32, 42, 63, 67], "led": 62, "legal": 49, "lemmat": [13, 40], "len": 28, "length": [35, 39, 41, 42, 44], "less": [13, 32, 50, 52, 55, 62, 63], "let": [41, 49, 53], "let_me_know": 49, "letter": [49, 71], "level": [0, 1, 2, 3, 4, 6, 7, 8, 9, 12, 13, 14, 16, 23, 61, 64, 65, 66, 71, 72], "lexic": [10, 12, 14, 16, 31, 32, 36, 42, 60, 62, 64], "lexical_featur": [14, 64], "lexical_features_v2": [10, 11], "lexicon": [5, 10, 14, 30, 39, 50, 52, 67, 69], "lexicons_dict": 67, "librari": [34, 51, 56, 57], "lift": 62, "light": 61, "like": [1, 22, 31, 34, 36, 41, 50, 61, 62], "limiat": 32, "limit": [11, 32, 37, 42, 54], "line": [0, 1, 19, 22, 48, 61, 62, 64], "linear": 64, "linguist": [18, 19, 30, 39, 50, 52], "link": [22, 29, 48, 50, 64], "list": [1, 2, 6, 7, 10, 11, 12, 13, 15, 19, 20, 21, 22, 28, 31, 33, 36, 37, 42, 48, 49, 50, 53, 54, 61, 64, 65, 66, 67, 68, 70, 71], "literatur": 62, "littl": 38, "littlehors": 1, "liu": [42, 52], "live": [1, 54], "liwc": [14, 30, 39, 51, 52, 56, 62], "liwc_featur": [10, 14], "lix": 34, "ll": [1, 31, 36, 61], "load": [19, 69], "load_saved_data": 19, "load_to_dict": 19, "load_to_list": 19, "loc": 15, "local": [1, 51, 61], "locat": [1, 62], "long": [4, 42], "longer": [30, 41, 43, 48, 61, 62], "look": [2, 34, 61, 65, 66], "loos": 36, "lot": [31, 36], "loud": 60, "love": [31, 56], "low": [1, 2, 29, 55, 60, 71], "lower": [21, 31, 33, 36, 41, 42, 44, 55, 60], "lowercas": [2, 13, 40, 48, 49, 71], "lowest": 71, "lpearl": 16, "lst": 6, "m": [30, 31, 36], "made": [1, 23, 35, 59, 61, 62], "magnitud": 55, "mai": [1, 2, 11, 28, 31, 32, 35, 36, 37, 41, 42, 43, 44, 54, 61, 62, 71], "main": [1, 2, 5, 62, 64, 65, 66], "make": [0, 1, 5, 31, 34, 55, 56, 62, 66, 69, 71], "man": 62, "mani": [1, 4, 11, 32, 37, 41, 60, 62, 66], "manner": [55, 62], "manual": [1, 61], "map": [13, 34], "mark": [19, 20, 22, 43, 54, 64, 71], "marker": [18, 32, 39, 42, 50, 51, 52, 54, 56], "marlow": 44, "matarazzo": 62, "match": [1, 5, 16, 19, 30], "math": 34, "matter": [28, 47], "max": 66, "max_num_chunk": 63, "maxim": [34, 35, 37], "maximum": [63, 65, 72], "mayb": [38, 47], "mcfarland": 70, "me": [31, 32, 36, 41, 50, 53], "mean": [0, 1, 4, 6, 11, 13, 21, 29, 31, 34, 36, 40, 41, 42, 47, 55, 56, 58, 61, 62, 65, 66, 73], "meaning": [31, 41, 55], "meaningless": 41, "meant": 39, "measur": [0, 7, 12, 13, 20, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 42, 44, 45, 46, 51, 52, 54, 55, 56, 57, 58, 59, 60, 62, 64, 68], "mechan": 32, "medium": 21, "meet": 48, "member": [13, 34, 37, 55], "merg": [2, 8, 65, 66], "merge_conv_data_with_origin": 2, "messag": [0, 1, 2, 3, 4, 5, 8, 11, 12, 13, 14, 15, 16, 17, 20, 21, 22, 23, 24, 28, 30, 31, 34, 35, 36, 37, 39, 41, 45, 46, 47, 48, 50, 51, 52, 55, 56, 57, 58, 61, 62, 63, 64, 65, 66, 67, 71, 73], "messaga": 61, "message_col": [0, 1, 2, 12, 13, 14, 61, 64, 65, 67, 71], "message_embed": [6, 7, 8], "message_lower_with_punc": 71, "metadata": [0, 1], "method": [5, 31, 41, 50, 62], "metric": [0, 1, 2, 8, 30, 34, 35, 46, 47, 48, 55, 66], "michael": 1, "mid": [1, 2, 71], "middl": [21, 34, 63], "might": [0, 1, 29, 43, 48, 53], "mikeyeoman": [18, 64], "mileston": 34, "mimic": [28, 31, 36, 45], "mimic_word": 28, "mimick": [28, 31, 64], "mimicri": [0, 1, 28, 31, 35, 36, 39, 61, 64], "mimicry_bert": [45, 46], "mind": [1, 35, 50], "mine": [31, 36, 53, 59], "minim": [0, 41, 60], "minimum": [65, 72], "minu": [12, 41, 64], "minut": [55, 58], "mirror": 1, "miss": [1, 32, 61, 71], "mitig": [31, 36], "mizil": 50, "mm": [31, 36], "mnsc": 6, "modal": 50, "mode": 60, "model": [1, 13, 15, 31, 34, 35, 36, 40, 45, 46, 47, 51, 62, 67], "modif": 35, "modifi": [1, 9, 19, 32, 64], "modul": [0, 1, 11, 34, 49, 61, 69], "monologu": 59, "more": [0, 1, 2, 11, 12, 22, 23, 24, 28, 31, 32, 34, 36, 37, 40, 41, 42, 43, 44, 45, 46, 50, 52, 55, 59, 61, 62, 71], "morn": 1, "most": [24, 31, 55, 62, 69], "motiv": 61, "move": [0, 1, 28, 31, 36, 39, 45, 59, 61], "movi": 31, "much": [1, 28, 31, 34, 35, 36, 45, 62], "multi": [1, 2, 71], "multidimension": [45, 46], "multipl": [0, 1, 2, 19, 62, 71], "must": [1, 6, 62, 71], "my": [30, 31, 35, 36, 45, 46, 50, 53], "my_chat_featur": 1, "my_feature_build": 61, "my_fil": 1, "my_output": 61, "my_output_chat_level": 61, "my_output_conv_level": 61, "my_output_user_level": 61, "my_pandas_datafram": 61, "myself": [31, 36, 53], "n": [35, 45, 46, 47, 57, 59, 60], "n_chat": 59, "na": [5, 33, 43, 44, 48, 49, 50, 53, 58], "naiv": [2, 20, 32, 34, 38, 39, 53, 56, 57, 64], "name": [0, 2, 4, 7, 8, 9, 12, 13, 14, 15, 17, 19, 23, 25, 28, 30, 32, 35, 39, 45, 46, 50, 51, 56, 63, 64, 66, 67, 68, 71, 72, 73], "name_to_train": 47, "named_ent": [15, 47], "named_entity_recognition_featur": 11, "nan": [0, 34], "nate": [35, 45, 46], "nathaniel": [35, 45, 46], "nativ": 50, "natur": [43, 55], "ndarrai": 68, "nearest": [13, 40], "nearli": 62, "necessari": [63, 67], "need": [0, 1, 2, 21, 62, 66, 67], "need_sent": 67, "need_senti": 67, "neg": [1, 24, 29, 31, 34, 35, 36, 42, 50, 51, 52, 54, 56, 61, 62, 67], "negat": [19, 49], "negative_bert": [1, 51, 61], "negative_emot": [49, 51, 52, 56], "negoti": 62, "neighborhood": 54, "neither": 30, "ner": 15, "ner_cutoff": [0, 1, 2, 47, 64], "ner_train": 64, "ner_training_df": [0, 1, 2, 47, 64], "nest": [0, 1, 2, 22, 71], "net": [45, 46], "network": 11, "neutral": [1, 5, 24, 30, 51, 55, 61, 67], "neutral_bert": [1, 51, 61], "never": 1, "new": [1, 4, 13, 34, 61, 64, 65, 66, 72], "new_column_nam": 72, "next": [1, 32, 47, 58], "nice": [1, 50, 54, 61], "nicknam": 1, "niculescu": 50, "night": 31, "nikhil": [59, 62], "nltk": [1, 42, 61], "nobodi": [31, 36], "nois": 32, "non": [1, 2, 28, 31, 37, 48, 61, 62, 71], "none": [1, 2, 19, 23, 37, 55, 61, 64, 65, 66, 67], "nor": 30, "normal": [19, 28, 31], "notabl": 62, "note": [0, 1, 2, 12, 16, 20, 42, 61, 71], "notebook": [0, 1], "noth": [31, 36, 56], "noun": 1, "novel": [45, 46], "now": [0, 1, 2], "nowher": [31, 36], "np": 68, "ntri": 32, "null": 34, "num": 48, "num_char": 65, "num_chunk": [27, 63], "num_hedge_word": 10, "num_messag": 65, "num_named_ent": [15, 47], "num_row": 63, "num_top": 13, "num_word": [12, 16, 65], "number": [0, 3, 11, 12, 13, 14, 15, 16, 19, 20, 21, 22, 23, 25, 28, 31, 32, 34, 36, 37, 40, 41, 42, 43, 44, 47, 48, 49, 54, 56, 58, 59, 60, 62, 63, 64, 66, 69, 71, 72], "numer": [0, 1, 13, 33, 68, 72, 73], "numpi": [1, 61, 68], "o": 35, "object": [1, 2, 19, 44, 50, 57, 58, 61, 62, 64, 65, 66], "obtain": [1, 13, 17, 23, 24, 34, 61], "occur": [0, 4, 31, 42, 71], "occurr": 19, "off": [1, 31, 36], "offer": 0, "offici": 61, "often": [28, 36, 47, 48, 62], "oh": [31, 36, 48], "okai": [31, 36], "older": [1, 61], "on_column": [18, 23, 28, 68, 72, 73], "onc": [1, 2, 11, 58, 61, 62], "one": [0, 1, 2, 4, 10, 12, 19, 23, 25, 28, 29, 31, 32, 36, 37, 47, 51, 56, 59, 61, 62, 67, 68, 71, 73], "ones": [31, 36], "onli": [0, 1, 2, 5, 11, 23, 29, 31, 32, 34, 36, 37, 45, 53, 58, 59, 61, 62, 71], "onlin": [1, 32, 39, 64], "onward": 0, "open": [0, 62, 66], "operation": [39, 50, 59], "opinion": [24, 31], "oppos": [2, 31, 34, 35, 55], "opposit": 34, "option": [1, 2, 37, 62, 63, 67, 71], "order": [0, 1, 35, 37, 42, 71], "org": [6, 15, 21, 24, 41, 70], "organ": 1, "origin": [1, 2, 5, 12, 21, 31, 32, 35, 36, 37, 45, 46, 49, 59], "orthogon": 34, "other": [1, 9, 11, 28, 29, 30, 31, 32, 34, 35, 36, 37, 39, 40, 45, 46, 48, 51, 52, 54, 56, 58, 59, 61, 62, 64, 66, 71], "other_lexical_featur": [11, 64], "otherwis": [2, 10, 21, 23, 32, 38, 63, 67], "our": [0, 1, 2, 11, 13, 29, 31, 32, 36, 37, 39, 53, 59, 61, 71], "ourselv": 53, "out": [1, 2, 16, 19, 31, 36, 55, 60, 62], "outcom": [1, 44, 62], "output": [0, 2, 10, 17, 19, 40, 61, 62, 64, 67], "output_file_bas": [0, 1, 2, 61], "output_file_path_chat_level": [1, 2], "output_file_path_conv_level": [1, 2], "output_file_path_user_level": [1, 2], "output_path": 67, "outsid": [1, 2, 12], "over": [1, 16, 29, 31, 34, 35, 36, 37, 53, 55, 60, 62, 71], "overal": [30, 31, 34, 36, 45, 46], "overrid": [0, 1, 2], "overview": [0, 61, 62], "overwritten": 1, "own": [0, 1, 9, 35, 62], "p": 55, "pacakg": 24, "pace": [43, 62], "packag": [17, 18, 40, 62], "pad": 19, "page": [1, 11, 29, 39, 61, 62, 69], "pair": [6, 19, 34, 49, 71], "pairwis": [6, 34], "panda": [0, 1, 2, 12, 14, 16, 23, 47, 64, 65, 66, 71, 72, 73], "paper": [4, 5, 12, 18, 29, 40, 50, 64], "paragraph": 22, "param": 71, "paramet": [2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 28, 47, 61, 62, 63, 64, 65, 66, 67, 68, 71, 72, 73], "paramt": 1, "pardon": 32, "parenthes": [22, 48, 64], "parenthet": [22, 48], "pars": [16, 50, 60], "part": [1, 10, 13, 29, 36, 42, 52, 71], "particip": [1, 9, 37, 62], "particl": [31, 36], "particular": [11, 31, 32, 34, 41, 45, 47, 51, 59, 62], "particularli": 42, "partner": 32, "pass": [1, 13, 21, 47, 71], "path": [1, 2, 19, 61, 67], "path_in": 19, "pattern": [4, 11, 19, 55, 62, 67], "paus": 4, "pd": [1, 2, 4, 6, 7, 8, 9, 12, 13, 14, 15, 16, 18, 19, 23, 25, 63, 64, 65, 66, 67, 68, 71], "pdf": [5, 12, 13, 16, 18, 21, 24, 64, 70], "penalti": 1, "pennebak": [12, 37, 41, 42, 52], "pennyslvania": 62, "peopl": [1, 32, 59, 62], "per": [1, 6, 9, 19, 42, 63, 66, 72], "percentag": [2, 21], "perfect": [37, 59], "perform": [0, 1, 2, 16, 50], "perhap": 1, "period": [4, 34, 55], "person": [1, 8, 12, 15, 16, 32, 34, 39, 41, 42, 50, 59, 62, 64, 70], "perspect": 1, "petrocelli": 5, "phrase": [19, 30, 38, 54], "phrase_split": 19, "pickl": [19, 67], "piec": [36, 42, 59, 63], "pl": 50, "place": [55, 61, 62], "plan": [34, 35, 45, 46], "player": 59, "pleas": [0, 1, 38, 49, 50, 61, 62], "please_start": 50, "point": [22, 24, 34, 35, 45, 46, 48, 52, 64, 66], "poisson": 55, "polar": [24, 39, 51, 52, 64], "polit": [1, 17, 18, 30, 32, 38, 39, 42, 51, 52, 54, 56, 64], "politeness_featur": 11, "politeness_v2": 11, "politeness_v2_help": 11, "politenessstrategi": [17, 50], "portion": 0, "posit": [0, 1, 11, 15, 24, 29, 31, 39, 42, 50, 51, 54, 56, 61, 62, 64, 67], "positive_affect_lexical_per_100": [51, 52, 56], "positive_bert": [1, 51, 61], "positive_emot": [49, 51, 52, 56], "positivity_bert": [1, 61], "positivity_zscor": 64, "positivity_zscore_chat": 52, "positivity_zscore_convers": 52, "possess": 31, "possibl": [1, 34, 62, 66], "possibli": [38, 62], "practic": [34, 35], "pre": [1, 4, 21, 37, 49, 64], "preced": [31, 35, 71], "precend": 35, "precis": 47, "precomput": 51, "predefin": 19, "predetermin": [31, 36], "predict": [2, 47, 51, 64], "prefer": [0, 1], "preload_word_list": 69, "prep_simpl": 19, "prep_whol": 19, "preposit": [31, 36], "preproces": 48, "preprocess": [0, 1, 2, 13, 19, 40, 43, 49, 51, 61, 69], "preprocess_chat_data": 2, "preprocess_conversation_column": 71, "preprocess_naive_turn": 71, "preprocess_text": 71, "preprocess_text_lowercase_but_retain_punctu": 71, "presenc": [2, 32, 67], "present": [1, 2, 14, 30, 31, 38, 42, 55, 62, 71], "prespecifi": 19, "prevent": 51, "previou": [1, 7, 28, 31, 36, 45, 46, 58, 64, 71], "primari": 34, "print": 2, "prior": [2, 64, 71], "priya": [47, 62], "probabl": [15, 47], "problem": 62, "procedur": 62, "proceed": 46, "process": [0, 1, 2, 4, 10, 21, 37, 55, 62, 64, 65, 67, 69, 71], "prodi": 15, "produc": [2, 34], "product": 15, "professor": 62, "progress": [1, 2], "project": [54, 62], "pronoun": [12, 16, 31, 36, 39, 41, 42, 64, 70], "proper": 1, "properti": [1, 61], "proport": [16, 39, 42, 64], "propos": 37, "provid": [0, 1, 2, 15, 29, 30, 33, 36, 39, 44, 47, 54, 62], "proxi": 42, "pseudonym": 1, "psycholog": 42, "pub": 70, "publish": [5, 30, 64], "pubsonlin": 6, "punctuat": [0, 2, 16, 19, 20, 21, 28, 43, 54, 60, 71], "punctuation_seper": 19, "puncut": 48, "pure": [24, 36], "purpos": 1, "put": [34, 50, 62, 66], "py": [0, 1, 14, 49, 61], "pypi": [1, 61], "python": [1, 32, 41, 56, 57, 61, 62, 68], "qtd": 62, "qualiti": 41, "quantifi": [31, 36, 62], "quantiti": [37, 39, 41, 47], "quartil": 50, "question": [16, 19, 20, 29, 32, 39, 49, 50, 64, 66, 68, 70], "question_num": 11, "question_word": 20, "quick": [1, 43], "quickli": 0, "quit": 40, "quot": [22, 48, 64], "quotat": [22, 48], "rabbit": 62, "rain": 41, "rais": [67, 71], "random": 55, "rang": [5, 8, 24, 30, 33, 34, 35, 40, 51, 53, 55, 56, 57], "ranganath": [16, 31, 32, 36, 38, 43, 54, 70], "ranganath2013": 70, "ranganathetal2013_detectingflirt": 16, "rapid": [1, 4], "rare": [34, 35], "rate": [42, 51], "rather": [1, 31, 34, 35, 36, 37, 45, 46, 63], "ratio": [16, 39, 64], "raw": [0, 12, 16, 21, 31, 33, 42, 50, 64], "re": [1, 31, 36, 42, 50, 61], "read": [0, 1, 2, 16, 21, 29, 33, 61, 62, 64, 65, 66, 67], "read_csv": 1, "read_in_lexicon": 67, "readabl": [11, 33, 64, 70], "reader": 33, "readi": 1, "readili": 62, "readthedoc": [1, 24, 61], "real": [1, 55], "realit": 13, "realli": [31, 36, 50], "reason": [31, 36, 45, 46, 49], "reassur": 49, "recal": 47, "recept": [18, 32, 39, 42, 50, 51, 52, 54, 56, 62, 64], "recogn": [1, 43, 47], "recognit": [0, 1, 2, 39, 64], "recommend": [0, 42, 62], "reddit": [48, 64], "reddit_tag": 11, "redditus": 48, "reduc": 63, "reduce_chunk": 63, "redund": [42, 62], "refer": [0, 1, 11, 22, 24, 28, 31, 42, 48, 52, 61, 62, 64, 70], "reflect": [37, 43], "regardless": 1, "regener": [0, 2, 51, 67], "regenerate_vector": [0, 1, 2, 67], "regex": [14, 16, 49], "regist": 37, "regress": 1, "regular": [5, 14, 30, 32, 42, 55, 58], "reichel": [53, 58, 60], "reidl": [4, 13], "reinvent": 62, "rel": [41, 51, 52, 55, 60, 64], "relat": [1, 61, 62, 64], "relationship": 36, "relev": [1, 29, 42, 44, 49, 51, 56, 61, 64, 65], "reli": [31, 34, 35, 36, 69], "reliabl": [33, 42], "remain": [1, 30, 71], "rememb": 1, "remov": [0, 2, 9, 13, 19, 28, 40, 43, 48, 49, 50, 71], "remove_active_us": 9, "renam": 1, "repair": [16, 39], "repeat": [60, 71], "repetit": 60, "replac": 19, "report": [1, 61], "repres": [2, 4, 6, 7, 11, 13, 23, 31, 34, 36, 42, 45, 46, 66, 67, 68, 71, 72, 73], "represent": [34, 38], "reproduc": [36, 62], "republican": 1, "request": [32, 50, 51], "requir": [0, 1, 20, 21, 31, 55, 61, 62, 64, 65, 66, 67], "research": [1, 2, 62], "reserv": 0, "resolv": 62, "resourc": [1, 39, 48, 61, 62], "respect": [1, 2, 12, 31, 36, 37, 69], "respons": [22, 48, 55, 58, 64], "restaur": [34, 56], "restor": 0, "restrict": 71, "result": [40, 55, 65, 72], "retain": [2, 16, 20, 21, 60, 71], "retriev": 50, "retunr": 3, "return": [2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 28, 30, 32, 43, 49, 50, 51, 55, 62, 63, 64, 65, 66, 67, 68, 70, 71, 72, 73], "reveal": 62, "revert": 50, "review": 62, "rewrit": 50, "rich": 62, "riedl": [13, 40, 55], "right": [31, 36, 61, 62], "roberta": [1, 39, 42, 52, 56, 61, 64, 67], "robust": 13, "rocklag": [5, 30, 64], "room": 59, "root": [13, 40], "rough": [12, 54], "roughli": 31, "round": [13, 40, 59, 71], "round_num": 1, "row": [0, 1, 2, 9, 13, 25, 37, 40, 59, 63, 68, 71, 72, 73], "rowbotham": 62, "rucker": 5, "rule": [1, 69], "run": [0, 10, 12, 16, 35, 46, 47, 48, 51, 61, 69], "runtim": [1, 35], "sagepub": [5, 64], "sai": [1, 32, 50, 59], "said": [1, 36, 62], "same": [0, 1, 2, 31, 34, 37, 45, 48, 52, 59, 60, 62, 71], "sampl": [61, 62], "sarcast": 48, "save": [0, 1, 2, 19, 64, 67], "save_featur": 2, "sbert": [1, 28, 31, 34, 35, 36, 45, 46, 64, 65, 67], "scale": [42, 51], "schema": 1, "scheme": 0, "school": [21, 62], "scienc": [29, 39, 62], "scientist": [61, 62], "score": [1, 4, 5, 11, 12, 13, 15, 21, 24, 28, 29, 30, 31, 34, 35, 36, 38, 39, 40, 45, 46, 47, 51, 53, 56, 57, 61, 64, 65, 67, 73], "script": [1, 61], "sea": 1, "seamless": 62, "search": [19, 61], "second": [0, 1, 4, 34, 42, 58, 59], "second_person": 49, "secr": [18, 49, 64], "section": [1, 29, 61], "see": [0, 1, 2, 30, 34, 38, 41, 45, 46, 47, 55, 62, 71], "seek": [5, 62], "segment": [0, 19], "select": [2, 4, 23, 28, 36, 45, 66, 67, 68, 71, 72, 73], "self": [1, 2, 61], "semant": [31, 34, 35, 41], "semantic_group": [1, 61], "send": [1, 37, 55], "sens": [5, 31, 54, 66], "sent": [1, 37, 64], "sentenc": [0, 1, 10, 15, 19, 20, 21, 33, 34, 35, 36, 42, 45, 46, 47, 48, 54, 56, 61, 67], "sentence_pad": 19, "sentence_split": 19, "sentence_to_train": 47, "sentencis": 19, "sentiment": [0, 1, 24, 31, 39, 42, 52, 56, 61, 62, 64, 67], "separ": [1, 2, 19, 34, 51], "sepcifi": 1, "septemb": 40, "sequenc": [1, 59], "sequenti": 1, "seri": [12, 16, 23, 28, 42, 71, 73], "serv": 12, "set": [0, 1, 2, 13, 23, 34, 48, 59], "set_self_conv_data": 2, "sever": [1, 30, 41, 42, 48, 51, 56, 61], "shall": 54, "share": [31, 36, 37], "she": [30, 31, 36], "shift": 34, "shop": 62, "short": [55, 58], "shorter": [13, 40, 41, 42, 43], "should": [0, 1, 2, 4, 14, 23, 28, 29, 31, 36, 47, 48, 54, 61, 62, 65, 66, 67, 68, 69, 71, 72, 73], "shouldn": [31, 36], "show": [1, 37, 61], "showeth": 62, "shruti": [35, 45, 46, 47, 62], "side": 31, "signal": [45, 55], "signifi": 42, "signific": [1, 61], "silent": 37, "similar": [1, 6, 7, 13, 28, 29, 31, 34, 35, 36, 40, 45, 46, 49, 62, 65], "similarli": [1, 35], "simpl": [0, 1, 16, 19, 42, 61, 62], "simpli": [1, 5, 11, 28, 56, 62], "simplifi": 1, "simplist": 41, "sinc": [1, 32, 41, 71], "singh": 62, "singl": [0, 1, 2, 11, 12, 19, 23, 31, 34, 35, 36, 37, 41, 45, 46, 59, 62, 71, 72], "singular": [12, 41, 64], "site": 16, "situat": 37, "size": [1, 13, 63, 67], "skip": 1, "slightli": [32, 62, 63], "slow": 1, "small": 40, "so": [1, 2, 10, 30, 31, 36, 37, 50, 61, 62, 66], "social": [29, 39, 61, 62], "socsci": 16, "softwar": 62, "sohi": 62, "sol3": 4, "solut": 59, "solv": 62, "some": [0, 1, 11, 17, 29, 32, 34, 35, 37, 41, 61, 63], "somebodi": [31, 36], "someon": [22, 29, 31, 36, 47, 48, 61, 64], "someplac": [31, 36], "someth": 47, "sometim": 1, "somewhat": 35, "soon": 62, "sorri": [16, 32, 50], "sort": 10, "sound": [47, 51], "sourc": [4, 5, 6, 12, 13, 16, 17, 21, 34, 35, 50, 64, 68], "space": [34, 40, 71], "spaci": [1, 19, 47, 49, 50, 61], "span": 63, "spars": 32, "speak": [1, 31, 36, 37, 59, 60, 62], "speaker": [0, 1, 2, 6, 8, 9, 25, 31, 34, 35, 37, 38, 42, 45, 46, 61, 66, 71, 72], "speaker_id": [2, 61, 72], "speaker_id_col": [0, 1, 2, 6, 8, 9, 25, 26, 27, 61, 65, 66, 71, 72], "speaker_nicknam": [0, 1, 2, 6, 9, 59, 66, 71], "special": [0, 1, 2, 48, 71], "specif": [1, 2, 12, 32, 41, 48, 55, 61, 62, 69, 71], "specifi": [1, 2, 19, 47, 49, 67, 68, 71, 72, 73], "speciifc": 63, "spend": [51, 62], "spike": 55, "split": [19, 21, 43, 63], "spoke": 59, "spoken": [11, 37], "spread": 55, "squar": [13, 40], "ssrn": 4, "stabl": 40, "stack": 14, "stackoverflow": 68, "stage": [1, 2, 34, 71], "stamp": 55, "standard": [1, 4, 37, 40, 41, 49, 55, 58, 60, 65, 72, 73], "stanford": 70, "start": [0, 15, 19, 20, 22, 23, 50], "statement": [1, 38, 42, 47, 48, 61, 62, 64], "statist": [65, 66, 68], "statologi": 41, "stem": 42, "step": [1, 4, 28, 41, 45, 46, 51], "still": [41, 45, 46], "stochast": 40, "stop": [40, 62], "stopword": [13, 19], "store": [1, 12, 16, 41, 49, 51, 61, 65, 67], "stoword": 42, "str": [2, 3, 4, 5, 7, 8, 9, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 28, 63, 64, 65, 66, 67, 68, 71, 72, 73], "straightforward": 29, "strategi": [17, 30, 32, 38, 39, 42, 49, 54, 64], "stream": 35, "strictli": 1, "string": [0, 1, 2, 4, 8, 12, 13, 14, 19, 23, 24, 50, 66, 67, 68, 71, 72, 73], "strongli": [1, 41, 61], "structur": [0, 36, 49], "student": [21, 33], "studi": [1, 34, 62], "style": [1, 31, 36, 59], "sub": [0, 1, 71], "subfold": 1, "subject": [5, 24, 28, 39, 49, 64], "subjunct": 50, "sublist": 28, "submiss": 55, "subpart": [1, 71], "subsequ": [1, 30, 51, 58], "subset": 62, "substanc": 36, "substant": 31, "substanti": 1, "substr": 30, "subtask": 1, "subtract": [41, 58], "succe": 62, "success": [0, 1, 4, 31, 36, 43, 55, 58], "suggest": [1, 13, 34, 42, 44, 50], "suit": [62, 64], "sum": [1, 28, 34, 61, 64, 65, 66, 72], "summar": [0, 1, 65, 66, 69], "summari": [65, 66, 72], "summariz": [0, 65], "summarize_featur": 69, "suppl": 6, "support": [1, 15, 61], "suppos": 1, "sure": 30, "swear": 49, "syntax": [1, 32, 61], "system": [2, 59, 64], "t": [0, 1, 2, 15, 29, 31, 36, 45, 49, 54, 61, 62, 67], "tabl": 62, "tag": 39, "take": [1, 4, 5, 9, 14, 25, 29, 31, 34, 37, 39, 42, 55, 61, 65, 71], "taken": [59, 71], "talk": [1, 37, 47, 59, 62], "tandem": [1, 61], "target": 15, "task": [1, 2, 59, 71], "tausczik": [12, 37, 41, 52], "tausczikpennebaker2013": 12, "team": [0, 1, 4, 11, 12, 13, 34, 39, 40, 59, 65], "team_bursti": 4, "team_comm_tool": [1, 61], "teamcommtool": 1, "technic": [29, 39, 61, 62], "teghxgbqdhgaaaaa": 5, "tempor": [0, 2, 55, 58, 64, 71], "temporal_featur": 11, "tend": [1, 34, 60], "term": [1, 28, 59], "termin": [1, 2, 61], "terribl": 51, "test": [13, 33, 47], "text": [0, 1, 2, 3, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 24, 28, 32, 33, 36, 42, 48, 55, 62, 64, 67, 71], "text_based_featur": 64, "textblob": [24, 39, 51, 52, 64], "textblob_sentiment_analysi": 11, "than": [0, 1, 2, 11, 13, 31, 34, 35, 36, 37, 40, 41, 45, 46, 54, 60, 62, 63], "thee": 62, "thei": [0, 1, 28, 29, 31, 34, 36, 37, 39, 42, 47, 58, 59, 61, 62, 67], "them": [0, 1, 2, 19, 28, 29, 31, 36, 50, 51, 55, 59, 61, 62, 64, 65, 66, 67], "themselv": [31, 36, 60], "theoret": 35, "theori": [34, 50], "therefor": [0, 1, 11, 28, 37, 45, 59, 62, 69], "thi": [0, 1, 2, 3, 4, 6, 7, 8, 9, 10, 12, 13, 14, 16, 18, 20, 21, 23, 28, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 71, 72, 73], "thing": [48, 61], "think": [1, 38, 47], "thorough": [43, 62], "those": [1, 21, 31, 36, 61], "though": [34, 42], "thought": [1, 35, 45], "thread": [1, 61], "three": [0, 1, 2, 22, 34, 37, 40, 51, 61, 62, 69, 71], "threshold": [15, 47], "through": [1, 45, 46, 50, 61, 62], "throughout": [31, 35, 36, 40, 45, 46, 55, 63], "tht": 35, "thu": [1, 2, 34, 35, 36, 37, 46, 55, 71], "time": [0, 1, 4, 23, 34, 35, 39, 42, 48, 51, 55, 59, 61, 62, 63, 64, 65, 66, 71], "time_diff": 55, "timediff": 4, "timestamp": [0, 1, 2, 8, 23, 58, 61, 62, 63, 64, 71], "timestamp_col": [0, 1, 2, 8, 61, 63, 64, 65, 71], "timestamp_end": [1, 23, 61, 64], "timestamp_start": [1, 23, 61, 64], "todai": [34, 35, 41, 43, 45, 46, 47], "todo": 66, "togeth": [0, 62, 66], "token": [16, 19, 39, 49, 54, 64], "token_count": [19, 49], "too": [30, 31, 36, 62], "took": [1, 59], "tool": [1, 61, 62], "toolkit": [0, 1, 11, 42, 45, 46, 55, 62], "top": [1, 50, 59], "topic": [1, 13, 31, 34, 40, 42, 43, 65], "tormala": 5, "total": [1, 3, 12, 16, 25, 31, 34, 36, 37, 41, 44, 53, 59, 60, 61, 62, 63, 64, 66, 72], "touch": [1, 61], "toward": [31, 36, 38, 42, 45, 46], "tradit": 49, "train": [1, 2, 15, 64], "train_spacy_n": 15, "transcript": 0, "transfom": [45, 46], "transform": [31, 34, 35, 36, 51], "transform_utter": 50, "treat": [1, 59, 61], "tri": [50, 64], "trivial": [3, 44, 62], "troubl": [1, 61], "true": [0, 1, 2, 37, 61, 63, 67, 71], "truncat": 2, "truth_intensifi": 49, "ttr": 64, "tupl": [0, 1, 2, 15, 19, 64], "turn": [0, 2, 25, 28, 31, 32, 37, 39, 61, 64, 65, 71], "turn_count": 59, "turn_df": 71, "turn_id": 71, "turn_taking_featur": 11, "twice": 63, "twitter": [1, 51, 61], "two": [0, 1, 2, 23, 31, 34, 36, 41, 45, 46, 52, 62, 63], "txt": 19, "type": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 28, 37, 39, 52, 63, 64, 65, 66, 67, 68, 70, 71, 72, 73], "typic": [1, 34, 40, 41, 42, 52, 60], "u": [1, 22, 31, 36, 48, 49, 58], "uci": 16, "uh": [31, 36], "ulrich": 55, "um": [31, 36, 60], "umbrella": [8, 29, 34], "uncertain": [5, 30], "uncertainti": 30, "under": [0, 1, 10, 11, 12, 28, 40], "underli": [1, 61], "underscor": [1, 61], "understand": [0, 33, 39, 43, 48, 58, 61, 62], "understood": 33, "uninterrupt": 59, "uniqu": [0, 1, 2, 6, 9, 13, 16, 23, 25, 41, 47, 52, 60, 61, 63, 71], "univers": 62, "unix": 58, "unless": [31, 36], "unpack": 62, "unpreprocess": [0, 2], "until": [31, 36, 45, 46], "unzip": [1, 61], "up": [1, 17, 21, 28, 31, 35, 36, 37, 45, 46, 51, 59, 61], "updat": [1, 9, 40, 54, 61], "upenn": 1, "upload": 13, "upon": 33, "upper": 42, "us": [0, 1, 2, 3, 5, 11, 12, 13, 17, 19, 24, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 40, 41, 42, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 60, 62, 64, 65, 66, 67, 71], "usag": [21, 24], "use_time_if_poss": 63, "user": [0, 1, 2, 9, 15, 22, 37, 47, 48, 51, 61, 62, 63, 64, 65, 66, 69, 72], "user_data": [2, 65, 66], "user_df": 9, "user_level_featur": 2, "user_list": 9, "userlevelfeaturescalcul": [2, 66, 69], "usernam": [22, 48], "utf": 1, "util": [1, 12, 21, 61, 62, 63, 64, 65, 66, 67, 68, 70, 71, 72, 73], "utilti": 62, "utter": [0, 1, 2, 3, 4, 5, 13, 14, 15, 16, 17, 20, 21, 23, 24, 30, 31, 32, 34, 35, 36, 37, 38, 40, 41, 42, 43, 44, 45, 46, 50, 51, 52, 54, 58, 60, 61, 67], "utteranc": 42, "v": [0, 1, 2, 13, 42, 61], "v0": 0, "valenc": 51, "valid": [23, 55], "valu": [1, 2, 5, 6, 10, 12, 13, 18, 19, 23, 28, 30, 31, 34, 36, 37, 40, 41, 42, 45, 46, 47, 55, 59, 61, 64, 68, 71, 72, 73], "vari": [13, 31, 34, 35], "variabl": [1, 56, 57, 64, 65, 66], "varianc": [8, 34], "variance_in_dd": 11, "variat": [4, 32], "varieti": [42, 62], "variou": [19, 42, 64, 65, 66], "vast": 62, "ve": [0, 31, 36, 50, 61], "vec": 6, "vect_data": [1, 7, 8, 28, 61, 64, 65, 66], "vect_path": 67, "vector": [0, 2, 6, 7, 8, 13, 28, 34, 35, 40, 55, 61, 64, 65, 67], "vector_data": [0, 1, 2, 61], "vector_directori": [0, 1, 2, 61, 65], "vein": 45, "verb": [19, 31, 36], "verbal": 32, "veri": [5, 28, 30, 31, 34, 35, 36, 42, 49, 54], "verifi": 2, "verit": 62, "version": [1, 12, 14, 21, 28, 31, 40, 51, 61], "versu": [4, 29, 47, 55, 59], "via": [3, 44], "view": 50, "visit": 41, "voila": 62, "w": 31, "wa": [0, 1, 2, 5, 12, 31, 32, 35, 36, 47, 51, 56, 59, 62, 71], "wai": [1, 2, 29, 30, 31, 32, 34, 49, 50, 54, 56, 57, 61, 62, 66], "waiai": 62, "wait": [4, 55], "walk": 1, "walkthrough": [0, 61, 62], "want": [1, 28, 34, 59, 61, 62, 67], "warn": 50, "watt": [1, 2, 62, 71], "we": [0, 1, 2, 3, 4, 5, 9, 10, 11, 12, 15, 16, 18, 23, 24, 28, 29, 30, 31, 34, 35, 36, 37, 40, 41, 42, 44, 45, 46, 47, 48, 49, 50, 52, 53, 55, 56, 57, 58, 59, 61, 62, 66, 67, 71], "web": 70, "websit": [1, 61], "week": 47, "weight": 66, "weigt": 31, "welcom": 61, "well": [29, 31, 36, 55, 62], "went": 41, "were": [1, 12, 31, 36, 42], "western": 1, "wh": [19, 31, 36], "wh_question": [32, 49, 54], "wharton": 62, "what": [1, 2, 12, 16, 20, 29, 31, 32, 34, 35, 36, 39, 41, 45, 46, 47, 50, 54, 62, 63], "whatev": [1, 31, 36], "wheel": 62, "when": [1, 16, 20, 31, 33, 36, 47, 54, 55, 59, 60, 61, 62, 69, 71], "whenev": 71, "where": [0, 1, 2, 19, 20, 28, 31, 32, 36, 37, 40, 41, 42, 48, 50, 51, 54, 59, 61, 65, 68, 73], "wherea": [31, 34, 35, 36, 43], "wherev": [31, 36], "whether": [1, 2, 10, 16, 19, 32, 37, 38, 41, 43, 47, 57, 58, 62, 63, 64, 67, 71], "which": [0, 1, 2, 3, 4, 5, 7, 9, 12, 13, 15, 16, 18, 23, 25, 28, 31, 34, 35, 36, 37, 38, 40, 41, 42, 51, 53, 54, 55, 56, 57, 58, 59, 61, 62, 64, 66, 68, 69, 71, 72, 73], "while": [31, 32, 34, 36, 37, 44, 45, 46, 55, 62, 71], "whitespac": 43, "who": [20, 31, 32, 36, 47, 51, 54, 59, 60, 62], "whole": [28, 59, 62, 71], "whom": [31, 36, 54], "whose": [31, 36, 54], "why": [20, 29, 31, 36, 54], "wide": 31, "wien": 62, "wiki": [21, 29, 70], "wiki_link": [1, 61], "wikipedia": [21, 33, 37, 70], "williamson": 60, "wish": [1, 2, 18, 28], "within": [0, 1, 2, 8, 11, 16, 28, 30, 31, 34, 35, 36, 41, 45, 46, 52, 55, 59, 60, 62, 63, 64, 68, 71, 73], "within_group": 2, "within_person_discursive_rang": 11, "within_task": [0, 1, 2, 71], "without": [1, 19, 31, 36, 42, 47, 54, 62, 69], "won": [0, 31, 36, 45], "wonder": 56, "woolei": 4, "woollei": [13, 40, 55], "wooten": 55, "word": [3, 10, 11, 12, 13, 14, 16, 19, 20, 21, 22, 28, 30, 32, 33, 37, 38, 39, 40, 41, 43, 45, 46, 48, 49, 52, 53, 54, 56, 57, 62, 64, 65, 66, 69, 70], "word_mimicri": 11, "word_start": [19, 49], "wordnet": [1, 61], "words_in_lin": 19, "work": [0, 47, 50, 55, 61, 62], "world": 55, "worri": 62, "would": [1, 29, 31, 34, 35, 36, 37, 42, 50, 54, 62], "wouldn": [31, 36], "wow": 50, "wp": 13, "write": [2, 29, 60], "www": [12, 13, 18, 41, 64], "x": [0, 1, 2, 4, 46, 68], "xinlan": 62, "yashveer": 62, "ye": 19, "yeah": [31, 36], "yeoman": [18, 49], "yesno_quest": [32, 49, 54], "yet": 48, "ylatau": 12, "you": [0, 1, 2, 11, 24, 29, 31, 36, 37, 43, 47, 50, 59, 61, 62, 69], "your": [0, 29, 31, 32, 36, 37, 50, 59, 61, 62], "yourself": [31, 36, 50], "yuluan": 62, "yup": [31, 36], "yuxuan": 62, "z": [12, 39, 49, 51, 64, 73], "zero": [13, 52], "zhang": 62, "zheng": 62, "zhong": 62, "zhou": 62, "zscore": 41, "zscore_chat": 41, "zscore_chats_and_convers": 69, "zscore_convers": 41, "\u00bc": 47, "\u03c4": 55}, "titles": ["The Basics", "Worked Example", "feature_builder module", "basic_features module", "burstiness module", "certainty module", "discursive_diversity module", "fflow module", "get_all_DD_features module", "get_user_network module", "hedge module", "Features: Technical Documentation", "info_exchange_zscore module", "information_diversity module", "lexical_features_v2 module", "named_entity_recognition_features module", "other_lexical_features module", "politeness_features module", "politeness_v2 module", "politeness_v2_helper module", "question_num module", "readability module", "reddit_tags module", "temporal_features module", "textblob_sentiment_analysis module", "turn_taking_features module", "variance_in_DD module", "within_person_discursive_range module", "word_mimicry module", "FEATURE NAME", "Certainty", "Content Word Accommodation", "Conversational Repair", "Dale-Chall Score", "Discursive Diversity", "Forward Flow", "Function Word Accommodation", "Gini Coefficient", "Hedge", "Features: Conceptual Documentation", "Information Diversity", "Information Exchange", "Linguistic Inquiry and Word Count (LIWC) and Other Lexicons", "Message Length", "Message Quantity", "Mimicry (BERT)", "Moving Mimicry", "Named Entity Recognition", "Online Discussion Tags", "Politeness/Receptiveness Markers", "Politeness Strategies", "Sentiment (RoBERTa)", "Positivity Z-Score", "Proportion of First Person Pronouns", "Question (Naive)", "Team Burstiness", "Textblob Polarity", "Textblob Subjectivity", "Time Difference", "Turn Taking Index", "Word Type-Token Ratio", "The Team Communication Toolkit", "Introduction", "assign_chunk_nums module", "calculate_chat_level_features module", "calculate_conversation_level_features module", "calculate_user_level_features module", "check_embeddings module", "gini_coefficient module", "Utilities", "preload_word_lists module", "preprocess module", "summarize_features module", "zscore_chats_and_conversation module"], "titleterms": {"A": 0, "One": 0, "The": [0, 61, 62], "accommod": [31, 36], "addit": 1, "advanc": 1, "assign_chunk_num": 63, "assumpt": 0, "basic": [0, 1, 29, 30, 31, 33, 34, 35, 36, 37, 38, 40, 41, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 55, 56, 57, 58, 59, 60], "basic_featur": 3, "bert": 45, "bursti": [4, 55], "calculate_chat_level_featur": 64, "calculate_conversation_level_featur": 65, "calculate_user_level_featur": 66, "caveat": [29, 30, 31, 33, 34, 35, 36, 38, 40, 41, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 55, 56, 57, 58, 59], "certainti": [5, 30], "chall": 33, "chat": [11, 39], "check_embed": 67, "citat": [29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60], "class": 69, "code": [0, 1], "coeffici": 37, "column": [1, 61], "commun": 61, "conceptu": 39, "configur": 1, "consider": 1, "content": [31, 61], "convers": [1, 11, 32, 39, 62, 69], "count": [42, 59], "customiz": 0, "dale": 33, "data": 1, "declar": 61, "demo": [0, 1], "detail": 1, "differ": 58, "directori": 1, "discurs": 34, "discursive_divers": 6, "discuss": 48, "divers": [34, 40], "document": [11, 39, 62], "driver": 69, "entiti": 47, "environ": [1, 61], "exampl": [1, 41, 47], "exchang": 41, "featur": [1, 11, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 69], "feature_build": 2, "featurebuild": [1, 61, 62], "fflow": 7, "file": [1, 30, 34, 35, 45, 46, 47, 51], "first": 53, "flow": 35, "forward": 35, "function": [0, 36], "gener": [1, 61, 62], "get": [1, 61, 62], "get_all_dd_featur": 8, "get_user_network": 9, "gini": 37, "gini_coeffici": 68, "hedg": [10, 38], "high": [29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60], "implement": [29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60], "import": [1, 61], "index": 59, "indic": 61, "info_exchange_zscor": 12, "inform": [1, 40, 41, 61], "information_divers": 13, "input": [1, 34], "inquiri": 42, "inspect": [1, 61], "interpret": [29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60], "introduct": 62, "intuit": [29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60], "kei": 0, "length": 43, "level": [11, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 62, 69], "lexical_features_v2": 14, "lexicon": 42, "light": 0, "linguist": 42, "liwc": 42, "marker": 49, "messag": [43, 44], "mimicri": [45, 46], "modul": [2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 63, 64, 65, 66, 67, 68, 70, 71, 72, 73], "motiv": 62, "move": 46, "naiv": 54, "name": [1, 29, 47, 61], "named_entity_recognition_featur": 15, "note": [29, 30, 31, 33, 34, 35, 36, 38, 40, 41, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 55, 56, 57, 58, 59], "onlin": 48, "other": [42, 69], "other_lexical_featur": 16, "ouput": 34, "our": 62, "output": [1, 30, 35, 45, 46, 47, 51], "packag": [0, 1, 61], "paramet": [0, 1], "person": 53, "pip": [1, 61], "polar": 56, "polit": [49, 50], "politeness_featur": 17, "politeness_v2": 18, "politeness_v2_help": 19, "posit": 52, "preload_word_list": 70, "preprocess": 71, "pronoun": 53, "proport": 53, "quantiti": 44, "question": 54, "question_num": 20, "ratio": 60, "readabl": 21, "recept": 49, "recognit": 47, "recommend": [1, 61], "reddit_tag": 22, "relat": [29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60], "repair": 32, "roberta": 51, "run": 1, "sampl": [0, 1], "score": [33, 41, 52], "sentiment": 51, "speaker": [11, 59, 62, 69], "start": [1, 61, 62], "strategi": 50, "subject": 57, "summarize_featur": 72, "tabl": 61, "tag": 48, "take": 59, "team": [55, 61, 62], "technic": 11, "temporal_featur": 23, "textblob": [56, 57], "textblob_sentiment_analysi": 24, "time": 58, "token": 60, "toolkit": 61, "touch": 0, "train": 47, "troubleshoot": [1, 61], "turn": [1, 59], "turn_taking_featur": 25, "type": 60, "us": 61, "user": 11, "util": 69, "utter": [11, 39, 62, 69], "variance_in_dd": 26, "vector": 1, "virtual": [1, 61], "walkthrough": 1, "within_person_discursive_rang": 27, "word": [31, 36, 42, 60], "word_mimicri": 28, "work": 1, "your": 1, "z": [41, 52], "zscore_chats_and_convers": 73}}) \ No newline at end of file +Search.setIndex({"alltitles": {"A Light-Touch, One-Function Package": [[0, "a-light-touch-one-function-package"]], "Additional FeatureBuilder Considerations": [[1, "additional-featurebuilder-considerations"]], "Advanced Configuration Columns": [[1, "advanced-configuration-columns"]], "Basic Input Columns": [[1, "basic-input-columns"]], "Certainty": [[30, null]], "Citation": [[29, "citation"], [30, "citation"], [31, "citation"], [32, "citation"], [33, "citation"], [34, "citation"], [35, "citation"], [36, "citation"], [37, "citation"], [38, "citation"], [40, "citation"], [41, "citation"], [42, "citation"], [43, "citation"], [44, "citation"], [45, "citation"], [46, "citation"], [47, "citation"], [48, "citation"], [49, "citation"], [50, "citation"], [51, "citation"], [52, "citation"], [53, "citation"], [54, "citation"], [55, "citation"], [56, "citation"], [57, "citation"], [58, "citation"], [59, "citation"], [60, "citation"]], "Configuring the FeatureBuilder": [[1, "configuring-the-featurebuilder"]], "Content Word Accommodation": [[31, null]], "Contents:": [[61, null]], "Conversation Parameters": [[1, "conversation-parameters"]], "Conversation-Level Features": [[11, "conversation-level-features"], [39, "conversation-level-features"]], "Conversational Repair": [[32, null]], "Customizable Parameters": [[0, "customizable-parameters"]], "Dale-Chall Score": [[33, null]], "Declaring a FeatureBuilder": [[61, "declaring-a-featurebuilder"]], "Demo / Sample Code": [[0, "demo-sample-code"], [1, "demo-sample-code"]], "Discursive Diversity": [[34, null]], "Example:": [[41, "example"]], "FEATURE NAME": [[29, null]], "Feature Column Names": [[1, "feature-column-names"], [61, "feature-column-names"]], "Feature Documentation": [[62, "feature-documentation"]], "Feature Information": [[1, "feature-information"], [61, "feature-information"]], "Features: Conceptual Documentation": [[39, null]], "Features: Technical Documentation": [[11, null]], "Forward Flow": [[35, null]], "Function Word Accommodation": [[36, null]], "Generating Features: Utterance-, Speaker-, and Conversation-Level": [[62, "generating-features-utterance-speaker-and-conversation-level"]], "Getting Started": [[1, "getting-started"], [61, "getting-started"], [62, "getting-started"]], "Gini Coefficient": [[37, null]], "Hedge": [[38, null]], "High*Level Intuition": [[54, "high-level-intuition"]], "High-Level Intuition": [[29, "high-level-intuition"], [30, "high-level-intuition"], [31, "high-level-intuition"], [32, "high-level-intuition"], [33, "high-level-intuition"], [34, "high-level-intuition"], [35, "high-level-intuition"], [36, "high-level-intuition"], [37, "high-level-intuition"], [38, "high-level-intuition"], [40, "high-level-intuition"], [41, "high-level-intuition"], [42, "high-level-intuition"], [43, "high-level-intuition"], [44, "high-level-intuition"], [45, "high-level-intuition"], [46, "high-level-intuition"], [47, "high-level-intuition"], [48, "high-level-intuition"], [49, "high-level-intuition"], [50, "high-level-intuition"], [51, "high-level-intuition"], [52, "high-level-intuition"], [53, "high-level-intuition"], [55, "high-level-intuition"], [56, "high-level-intuition"], [57, "high-level-intuition"], [58, "high-level-intuition"], [59, "high-level-intuition"], [60, "high-level-intuition"]], "Implementation": [[32, "implementation"], [42, "implementation"], [52, "implementation"], [54, "implementation"]], "Implementation Basics": [[29, "implementation-basics"], [30, "implementation-basics"], [31, "implementation-basics"], [33, "implementation-basics"], [34, "implementation-basics"], [35, "implementation-basics"], [36, "implementation-basics"], [37, "implementation-basics"], [38, "implementation-basics"], [40, "implementation-basics"], [41, "implementation-basics"], [43, "implementation-basics"], [44, "implementation-basics"], [45, "implementation-basics"], [46, "implementation-basics"], [47, "implementation-basics"], [48, "implementation-basics"], [49, "implementation-basics"], [50, "implementation-basics"], [51, "implementation-basics"], [53, "implementation-basics"], [55, "implementation-basics"], [56, "implementation-basics"], [57, "implementation-basics"], [58, "implementation-basics"], [59, "implementation-basics"], [60, "implementation-basics"]], "Implementation Notes/Caveats": [[29, "implementation-notes-caveats"], [30, "implementation-notes-caveats"], [31, "implementation-notes-caveats"], [33, "implementation-notes-caveats"], [34, "implementation-notes-caveats"], [35, "implementation-notes-caveats"], [36, "implementation-notes-caveats"], [38, "implementation-notes-caveats"], [40, "implementation-notes-caveats"], [41, "implementation-notes-caveats"], [43, "implementation-notes-caveats"], [44, "implementation-notes-caveats"], [45, "implementation-notes-caveats"], [46, "implementation-notes-caveats"], [47, "implementation-notes-caveats"], [48, "implementation-notes-caveats"], [49, "implementation-notes-caveats"], [50, "implementation-notes-caveats"], [51, "implementation-notes-caveats"], [53, "implementation-notes-caveats"], [55, "implementation-notes-caveats"], [56, "implementation-notes-caveats"], [57, "implementation-notes-caveats"], [58, "implementation-notes-caveats"], [59, "implementation-notes-caveats"]], "Import Recommendations: Virtual Environment and Pip": [[1, "import-recommendations-virtual-environment-and-pip"], [61, "import-recommendations-virtual-environment-and-pip"]], "Importing the Package": [[1, "importing-the-package"]], "Indices and Tables": [[61, "indices-and-tables"]], "Information Diversity": [[40, null]], "Information Exchange": [[41, null]], "Input File": [[34, "id2"]], "Inspecting Generated Features": [[1, "inspecting-generated-features"], [61, "inspecting-generated-features"]], "Interpretation:": [[41, "interpretation"]], "Interpreting the Feature": [[29, "interpreting-the-feature"], [30, "interpreting-the-feature"], [31, "interpreting-the-feature"], [32, "interpreting-the-feature"], [33, "interpreting-the-feature"], [34, "interpreting-the-feature"], [35, "interpreting-the-feature"], [36, "interpreting-the-feature"], [37, "interpreting-the-feature"], [38, "interpreting-the-feature"], [40, "interpreting-the-feature"], [41, "interpreting-the-feature"], [42, "interpreting-the-feature"], [43, "interpreting-the-feature"], [44, "interpreting-the-feature"], [45, "interpreting-the-feature"], [46, "interpreting-the-feature"], [47, "interpreting-the-feature"], [48, "interpreting-the-feature"], [49, "interpreting-the-feature"], [50, "interpreting-the-feature"], [51, "interpreting-the-feature"], [52, "interpreting-the-feature"], [53, "interpreting-the-feature"], [54, "interpreting-the-feature"], [55, "interpreting-the-feature"], [56, "interpreting-the-feature"], [57, "interpreting-the-feature"], [58, "interpreting-the-feature"], [59, "interpreting-the-feature"], [60, "interpreting-the-feature"]], "Introduction": [[62, null]], "Key Assumptions and Parameters": [[0, "key-assumptions-and-parameters"]], "Linguistic Inquiry and Word Count (LIWC) and Other Lexicons": [[42, null]], "Message Length": [[43, null]], "Message Quantity": [[44, null]], "Mimicry (BERT)": [[45, null]], "Motivation": [[62, "motivation"]], "Moving Mimicry": [[46, null]], "Named Entity Recognition": [[47, null]], "Named Entity Training Examples": [[47, "id2"]], "Online Discussion Tags": [[48, null]], "Other Utilities": [[69, "other-utilities"]], "Ouput File": [[34, "id3"]], "Our Team": [[62, "our-team"]], "Output File": [[30, "id2"], [35, "id2"], [45, "id2"], [46, "id2"], [47, "id3"], [51, "id1"]], "Output File Naming Details": [[1, "output-file-naming-details"]], "Package Assumptions": [[0, "package-assumptions"]], "Politeness Strategies": [[50, null]], "Politeness/Receptiveness Markers": [[49, null]], "Positivity Z-Score": [[52, null]], "Proportion of First Person Pronouns": [[53, null]], "Question (Naive)": [[54, null]], "Related Features": [[29, "related-features"], [30, "related-features"], [31, "related-features"], [32, "related-features"], [33, "related-features"], [34, "related-features"], [35, "related-features"], [36, "related-features"], [37, "related-features"], [38, "related-features"], [40, "related-features"], [41, "related-features"], [42, "related-features"], [43, "related-features"], [44, "related-features"], [45, "related-features"], [46, "related-features"], [47, "related-features"], [48, "related-features"], [49, "related-features"], [50, "related-features"], [51, "related-features"], [52, "related-features"], [53, "related-features"], [54, "related-features"], [55, "related-features"], [56, "related-features"], [57, "related-features"], [58, "related-features"], [59, "related-features"], [60, "related-features"]], "Sentiment (RoBERTa)": [[51, null]], "Speaker Turn Counts": [[59, "id2"]], "Speaker- (User) Level Features": [[11, "speaker-user-level-features"]], "Table of Contents": [[61, "table-of-contents"]], "Team Burstiness": [[55, null]], "Textblob Polarity": [[56, null]], "Textblob Subjectivity": [[57, null]], "The Basics (Get Started Here!)": [[0, null]], "The FeatureBuilder": [[62, "the-featurebuilder"]], "The Team Communication Toolkit": [[61, null]], "Time Difference": [[58, null]], "Troubleshooting": [[1, "troubleshooting"], [61, "troubleshooting"]], "Turn Taking Index": [[59, null]], "Turns": [[1, "turns"]], "Using the Package": [[61, "using-the-package"]], "Utilities": [[69, null]], "Utterance- (Chat) Level Features": [[11, "utterance-chat-level-features"], [39, "utterance-chat-level-features"]], "Vector Directory": [[1, "vector-directory"]], "Walkthrough: Running the FeatureBuilder on Your Data": [[1, "walkthrough-running-the-featurebuilder-on-your-data"]], "Word Type-Token Ratio": [[60, null]], "Worked Example": [[1, null]], "assign_chunk_nums module": [[63, null]], "basic_features module": [[3, null]], "burstiness module": [[4, null]], "calculate_chat_level_features module": [[64, null]], "calculate_conversation_level_features module": [[65, null]], "calculate_user_level_features module": [[66, null]], "certainty module": [[5, null]], "check_embeddings module": [[67, null]], "discursive_diversity module": [[6, null]], "feature_builder module": [[2, null]], "fflow module": [[7, null]], "get_all_DD_features module": [[8, null]], "get_user_network module": [[9, null]], "gini_coefficient module": [[68, null]], "hedge module": [[10, null]], "info_exchange_zscore module": [[12, null]], "information_diversity module": [[13, null]], "lexical_features_v2 module": [[14, null]], "named_entity_recognition_features module": [[15, null]], "other_lexical_features module": [[16, null]], "politeness_features module": [[17, null]], "politeness_v2 module": [[18, null]], "politeness_v2_helper module": [[19, null]], "preload_word_lists module": [[70, null]], "preprocess module": [[71, null]], "question_num module": [[20, null]], "readability module": [[21, null]], "reddit_tags module": [[22, null]], "summarize_features module": [[72, null]], "temporal_features module": [[23, null]], "textblob_sentiment_analysis module": [[24, null]], "turn_taking_features module": [[25, null]], "variance_in_DD module": [[26, null]], "within_person_discursive_range module": [[27, null]], "word_mimicry module": [[28, null]], "z-scores:": [[41, "z-scores"]], "zscore_chats_and_conversation module": [[73, null]], "\u201cDriver\u201d Classes: Utterance-, Conversation-, and Speaker-Level Features": [[69, "driver-classes-utterance-conversation-and-speaker-level-features"]]}, "docnames": ["basics", "examples", "feature_builder", "features/basic_features", "features/burstiness", "features/certainty", "features/discursive_diversity", "features/fflow", "features/get_all_DD_features", "features/get_user_network", "features/hedge", "features/index", "features/info_exchange_zscore", "features/information_diversity", "features/lexical_features_v2", "features/named_entity_recognition_features", "features/other_lexical_features", "features/politeness_features", "features/politeness_v2", "features/politeness_v2_helper", "features/question_num", "features/readability", "features/reddit_tags", "features/temporal_features", "features/textblob_sentiment_analysis", "features/turn_taking_features", "features/variance_in_DD", "features/within_person_discursive_range", "features/word_mimicry", "features_conceptual/TEMPLATE", "features_conceptual/certainty", "features_conceptual/content_word_accommodation", "features_conceptual/conversational_repair", "features_conceptual/dale_chall_score", "features_conceptual/discursive_diversity", "features_conceptual/forward_flow", "features_conceptual/function_word_accommodation", "features_conceptual/gini_coefficient", "features_conceptual/hedge", "features_conceptual/index", "features_conceptual/information_diversity", "features_conceptual/information_exchange", "features_conceptual/liwc", "features_conceptual/message_length", "features_conceptual/message_quantity", "features_conceptual/mimicry_bert", "features_conceptual/moving_mimicry", "features_conceptual/named_entity_recognition", "features_conceptual/online_discussions_tags", "features_conceptual/politeness_receptiveness_markers", "features_conceptual/politeness_strategies", "features_conceptual/positivity_bert", "features_conceptual/positivity_z_score", "features_conceptual/proportion_of_first_person_pronouns", "features_conceptual/questions", "features_conceptual/team_burstiness", "features_conceptual/textblob_polarity", "features_conceptual/textblob_subjectivity", "features_conceptual/time_difference", "features_conceptual/turn_taking_index", "features_conceptual/word_ttr", "index", "intro", "utils/assign_chunk_nums", "utils/calculate_chat_level_features", "utils/calculate_conversation_level_features", "utils/calculate_user_level_features", "utils/check_embeddings", "utils/gini_coefficient", "utils/index", "utils/preload_word_lists", "utils/preprocess", "utils/summarize_features", "utils/zscore_chats_and_conversation"], "envversion": {"sphinx": 62, "sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2}, "filenames": ["basics.rst", "examples.rst", "feature_builder.rst", "features/basic_features.rst", "features/burstiness.rst", "features/certainty.rst", "features/discursive_diversity.rst", "features/fflow.rst", "features/get_all_DD_features.rst", "features/get_user_network.rst", "features/hedge.rst", "features/index.rst", "features/info_exchange_zscore.rst", "features/information_diversity.rst", "features/lexical_features_v2.rst", "features/named_entity_recognition_features.rst", "features/other_lexical_features.rst", "features/politeness_features.rst", "features/politeness_v2.rst", "features/politeness_v2_helper.rst", "features/question_num.rst", "features/readability.rst", "features/reddit_tags.rst", "features/temporal_features.rst", "features/textblob_sentiment_analysis.rst", "features/turn_taking_features.rst", "features/variance_in_DD.rst", "features/within_person_discursive_range.rst", "features/word_mimicry.rst", "features_conceptual/TEMPLATE.rst", "features_conceptual/certainty.rst", "features_conceptual/content_word_accommodation.rst", "features_conceptual/conversational_repair.rst", "features_conceptual/dale_chall_score.rst", "features_conceptual/discursive_diversity.rst", "features_conceptual/forward_flow.rst", "features_conceptual/function_word_accommodation.rst", "features_conceptual/gini_coefficient.rst", "features_conceptual/hedge.rst", "features_conceptual/index.rst", "features_conceptual/information_diversity.rst", "features_conceptual/information_exchange.rst", "features_conceptual/liwc.rst", "features_conceptual/message_length.rst", "features_conceptual/message_quantity.rst", "features_conceptual/mimicry_bert.rst", "features_conceptual/moving_mimicry.rst", "features_conceptual/named_entity_recognition.rst", "features_conceptual/online_discussions_tags.rst", "features_conceptual/politeness_receptiveness_markers.rst", "features_conceptual/politeness_strategies.rst", "features_conceptual/positivity_bert.rst", "features_conceptual/positivity_z_score.rst", "features_conceptual/proportion_of_first_person_pronouns.rst", "features_conceptual/questions.rst", "features_conceptual/team_burstiness.rst", "features_conceptual/textblob_polarity.rst", "features_conceptual/textblob_subjectivity.rst", "features_conceptual/time_difference.rst", "features_conceptual/turn_taking_index.rst", "features_conceptual/word_ttr.rst", "index.rst", "intro.rst", "utils/assign_chunk_nums.rst", "utils/calculate_chat_level_features.rst", "utils/calculate_conversation_level_features.rst", "utils/calculate_user_level_features.rst", "utils/check_embeddings.rst", "utils/gini_coefficient.rst", "utils/index.rst", "utils/preload_word_lists.rst", "utils/preprocess.rst", "utils/summarize_features.rst", "utils/zscore_chats_and_conversation.rst"], "indexentries": {"adverb_limiter() (in module features.politeness_v2_helper)": [[19, "features.politeness_v2_helper.adverb_limiter", false]], "assert_key_columns_present() (in module utils.preprocess)": [[71, "utils.preprocess.assert_key_columns_present", false]], "assign_chunk_nums() (in module utils.assign_chunk_nums)": [[63, "utils.assign_chunk_nums.assign_chunk_nums", false]], "bare_command() (in module features.politeness_v2_helper)": [[19, "features.politeness_v2_helper.bare_command", false]], "built_spacy_ner() (in module features.named_entity_recognition_features)": [[15, "features.named_entity_recognition_features.built_spacy_ner", false]], "burstiness() (in module features.burstiness)": [[4, "features.burstiness.burstiness", false]], "calculate_chat_level_features() (utils.calculate_chat_level_features.chatlevelfeaturescalculator method)": [[64, "utils.calculate_chat_level_features.ChatLevelFeaturesCalculator.calculate_chat_level_features", false]], "calculate_conversation_level_features() (utils.calculate_conversation_level_features.conversationlevelfeaturescalculator method)": [[65, "utils.calculate_conversation_level_features.ConversationLevelFeaturesCalculator.calculate_conversation_level_features", false]], "calculate_hedge_features() (utils.calculate_chat_level_features.chatlevelfeaturescalculator method)": [[64, "utils.calculate_chat_level_features.ChatLevelFeaturesCalculator.calculate_hedge_features", false]], "calculate_id_score() (in module features.information_diversity)": [[13, "features.information_diversity.calculate_ID_score", false]], "calculate_info_diversity() (utils.calculate_conversation_level_features.conversationlevelfeaturescalculator method)": [[65, "utils.calculate_conversation_level_features.ConversationLevelFeaturesCalculator.calculate_info_diversity", false]], "calculate_named_entities() (in module features.named_entity_recognition_features)": [[15, "features.named_entity_recognition_features.calculate_named_entities", false]], "calculate_num_question_naive() (in module features.question_num)": [[20, "features.question_num.calculate_num_question_naive", false]], "calculate_politeness_sentiment() (utils.calculate_chat_level_features.chatlevelfeaturescalculator method)": [[64, "utils.calculate_chat_level_features.ChatLevelFeaturesCalculator.calculate_politeness_sentiment", false]], "calculate_politeness_v2() (utils.calculate_chat_level_features.chatlevelfeaturescalculator method)": [[64, "utils.calculate_chat_level_features.ChatLevelFeaturesCalculator.calculate_politeness_v2", false]], "calculate_team_burstiness() (utils.calculate_conversation_level_features.conversationlevelfeaturescalculator method)": [[65, "utils.calculate_conversation_level_features.ConversationLevelFeaturesCalculator.calculate_team_burstiness", false]], "calculate_textblob_sentiment() (utils.calculate_chat_level_features.chatlevelfeaturescalculator method)": [[64, "utils.calculate_chat_level_features.ChatLevelFeaturesCalculator.calculate_textblob_sentiment", false]], "calculate_user_level_features() (utils.calculate_user_level_features.userlevelfeaturescalculator method)": [[66, "utils.calculate_user_level_features.UserLevelFeaturesCalculator.calculate_user_level_features", false]], "calculate_vector_word_mimicry() (utils.calculate_chat_level_features.chatlevelfeaturescalculator method)": [[64, "utils.calculate_chat_level_features.ChatLevelFeaturesCalculator.calculate_vector_word_mimicry", false]], "calculate_word_mimicry() (utils.calculate_chat_level_features.chatlevelfeaturescalculator method)": [[64, "utils.calculate_chat_level_features.ChatLevelFeaturesCalculator.calculate_word_mimicry", false]], "chat_level_features() (feature_builder.featurebuilder method)": [[2, "feature_builder.FeatureBuilder.chat_level_features", false]], "chatlevelfeaturescalculator (class in utils.calculate_chat_level_features)": [[64, "utils.calculate_chat_level_features.ChatLevelFeaturesCalculator", false]], "check_embeddings() (in module utils.check_embeddings)": [[67, "utils.check_embeddings.check_embeddings", false]], "classify_ntri() (in module features.other_lexical_features)": [[16, "features.other_lexical_features.classify_NTRI", false]], "classify_text_dalechall() (in module features.readability)": [[21, "features.readability.classify_text_dalechall", false]], "clean_text() (in module features.politeness_v2_helper)": [[19, "features.politeness_v2_helper.clean_text", false]], "coerce_to_date_or_number() (in module features.temporal_features)": [[23, "features.temporal_features.coerce_to_date_or_number", false]], "commit_data() (in module features.politeness_v2_helper)": [[19, "features.politeness_v2_helper.commit_data", false]], "compress() (in module utils.preprocess)": [[71, "utils.preprocess.compress", false]], "compute_frequency() (in module features.word_mimicry)": [[28, "features.word_mimicry.compute_frequency", false]], "compute_frequency_per_conv() (in module features.word_mimicry)": [[28, "features.word_mimicry.compute_frequency_per_conv", false]], "computetf() (in module features.word_mimicry)": [[28, "features.word_mimicry.computeTF", false]], "concat_bert_features() (utils.calculate_chat_level_features.chatlevelfeaturescalculator method)": [[64, "utils.calculate_chat_level_features.ChatLevelFeaturesCalculator.concat_bert_features", false]], "conjection_seperator() (in module features.politeness_v2_helper)": [[19, "features.politeness_v2_helper.conjection_seperator", false]], "content_mimicry_score() (in module features.word_mimicry)": [[28, "features.word_mimicry.Content_mimicry_score", false]], "content_mimicry_score_per_conv() (in module features.word_mimicry)": [[28, "features.word_mimicry.Content_mimicry_score_per_conv", false]], "conv_level_features() (feature_builder.featurebuilder method)": [[2, "feature_builder.FeatureBuilder.conv_level_features", false]], "conv_to_float_arr() (in module features.get_all_dd_features)": [[8, "features.get_all_DD_features.conv_to_float_arr", false]], "conversationlevelfeaturescalculator (class in utils.calculate_conversation_level_features)": [[65, "utils.calculate_conversation_level_features.ConversationLevelFeaturesCalculator", false]], "count_all_caps() (in module features.reddit_tags)": [[22, "features.reddit_tags.count_all_caps", false]], "count_bullet_points() (in module features.reddit_tags)": [[22, "features.reddit_tags.count_bullet_points", false]], "count_characters() (in module features.basic_features)": [[3, "features.basic_features.count_characters", false]], "count_difficult_words() (in module features.readability)": [[21, "features.readability.count_difficult_words", false]], "count_ellipses() (in module features.reddit_tags)": [[22, "features.reddit_tags.count_ellipses", false]], "count_emojis() (in module features.reddit_tags)": [[22, "features.reddit_tags.count_emojis", false]], "count_emphasis() (in module features.reddit_tags)": [[22, "features.reddit_tags.count_emphasis", false]], "count_line_breaks() (in module features.reddit_tags)": [[22, "features.reddit_tags.count_line_breaks", false]], "count_links() (in module features.reddit_tags)": [[22, "features.reddit_tags.count_links", false]], "count_matches() (in module features.politeness_v2_helper)": [[19, "features.politeness_v2_helper.count_matches", false]], "count_messages() (in module features.basic_features)": [[3, "features.basic_features.count_messages", false]], "count_numbering() (in module features.reddit_tags)": [[22, "features.reddit_tags.count_numbering", false]], "count_parentheses() (in module features.reddit_tags)": [[22, "features.reddit_tags.count_parentheses", false]], "count_quotes() (in module features.reddit_tags)": [[22, "features.reddit_tags.count_quotes", false]], "count_responding_to_someone() (in module features.reddit_tags)": [[22, "features.reddit_tags.count_responding_to_someone", false]], "count_spacy_matches() (in module features.politeness_v2_helper)": [[19, "features.politeness_v2_helper.count_spacy_matches", false]], "count_syllables() (in module features.readability)": [[21, "features.readability.count_syllables", false]], "count_turn_taking_index() (in module features.turn_taking_features)": [[25, "features.turn_taking_features.count_turn_taking_index", false]], "count_turns() (in module features.turn_taking_features)": [[25, "features.turn_taking_features.count_turns", false]], "count_user_references() (in module features.reddit_tags)": [[22, "features.reddit_tags.count_user_references", false]], "count_words() (in module features.basic_features)": [[3, "features.basic_features.count_words", false]], "create_chunks() (in module utils.assign_chunk_nums)": [[63, "utils.assign_chunk_nums.create_chunks", false]], "create_chunks_messages() (in module utils.assign_chunk_nums)": [[63, "utils.assign_chunk_nums.create_chunks_messages", false]], "create_cumulative_rows() (in module utils.preprocess)": [[71, "utils.preprocess.create_cumulative_rows", false]], "dale_chall_helper() (in module features.readability)": [[21, "features.readability.dale_chall_helper", false]], "feat_counts() (in module features.politeness_v2_helper)": [[19, "features.politeness_v2_helper.feat_counts", false]], "feature_builder": [[2, "module-feature_builder", false]], "featurebuilder (class in feature_builder)": [[2, "feature_builder.FeatureBuilder", false]], "features.basic_features": [[3, "module-features.basic_features", false]], "features.burstiness": [[4, "module-features.burstiness", false]], "features.certainty": [[5, "module-features.certainty", false]], "features.discursive_diversity": [[6, "module-features.discursive_diversity", false]], "features.fflow": [[7, "module-features.fflow", false]], "features.get_all_dd_features": [[8, "module-features.get_all_DD_features", false]], "features.get_user_network": [[9, "module-features.get_user_network", false]], "features.hedge": [[10, "module-features.hedge", false]], "features.info_exchange_zscore": [[12, "module-features.info_exchange_zscore", false]], "features.information_diversity": [[13, "module-features.information_diversity", false]], "features.lexical_features_v2": [[14, "module-features.lexical_features_v2", false]], "features.named_entity_recognition_features": [[15, "module-features.named_entity_recognition_features", false]], "features.other_lexical_features": [[16, "module-features.other_lexical_features", false]], "features.politeness_features": [[17, "module-features.politeness_features", false]], "features.politeness_v2": [[18, "module-features.politeness_v2", false]], "features.politeness_v2_helper": [[19, "module-features.politeness_v2_helper", false]], "features.question_num": [[20, "module-features.question_num", false]], "features.readability": [[21, "module-features.readability", false]], "features.reddit_tags": [[22, "module-features.reddit_tags", false]], "features.temporal_features": [[23, "module-features.temporal_features", false]], "features.textblob_sentiment_analysis": [[24, "module-features.textblob_sentiment_analysis", false]], "features.turn_taking_features": [[25, "module-features.turn_taking_features", false]], "features.variance_in_dd": [[26, "module-features.variance_in_DD", false]], "features.within_person_discursive_range": [[27, "module-features.within_person_discursive_range", false]], "features.word_mimicry": [[28, "module-features.word_mimicry", false]], "featurize() (feature_builder.featurebuilder method)": [[2, "feature_builder.FeatureBuilder.featurize", false]], "function_mimicry_score() (in module features.word_mimicry)": [[28, "features.word_mimicry.function_mimicry_score", false]], "generate_bert() (in module utils.check_embeddings)": [[67, "utils.check_embeddings.generate_bert", false]], "generate_certainty_pkl() (in module utils.check_embeddings)": [[67, "utils.check_embeddings.generate_certainty_pkl", false]], "generate_lexicon_pkl() (in module utils.check_embeddings)": [[67, "utils.check_embeddings.generate_lexicon_pkl", false]], "generate_vect() (in module utils.check_embeddings)": [[67, "utils.check_embeddings.generate_vect", false]], "get_average() (in module utils.summarize_features)": [[72, "utils.summarize_features.get_average", false]], "get_centroids() (utils.calculate_user_level_features.userlevelfeaturescalculator method)": [[66, "utils.calculate_user_level_features.UserLevelFeaturesCalculator.get_centroids", false]], "get_certainty() (in module features.certainty)": [[5, "features.certainty.get_certainty", false]], "get_certainty_score() (utils.calculate_chat_level_features.chatlevelfeaturescalculator method)": [[64, "utils.calculate_chat_level_features.ChatLevelFeaturesCalculator.get_certainty_score", false]], "get_content_words_in_message() (in module features.word_mimicry)": [[28, "features.word_mimicry.get_content_words_in_message", false]], "get_conversation_level_aggregates() (utils.calculate_conversation_level_features.conversationlevelfeaturescalculator method)": [[65, "utils.calculate_conversation_level_features.ConversationLevelFeaturesCalculator.get_conversation_level_aggregates", false]], "get_cosine_similarity() (in module features.discursive_diversity)": [[6, "features.discursive_diversity.get_cosine_similarity", false]], "get_dale_chall_easy_words() (in module utils.preload_word_lists)": [[70, "utils.preload_word_lists.get_dale_chall_easy_words", false]], "get_dale_chall_score_and_classfication() (utils.calculate_chat_level_features.chatlevelfeaturescalculator method)": [[64, "utils.calculate_chat_level_features.ChatLevelFeaturesCalculator.get_dale_chall_score_and_classfication", false]], "get_dd() (in module features.discursive_diversity)": [[6, "features.discursive_diversity.get_DD", false]], "get_dd_features() (in module features.get_all_dd_features)": [[8, "features.get_all_DD_features.get_DD_features", false]], "get_dep_pairs() (in module features.politeness_v2_helper)": [[19, "features.politeness_v2_helper.get_dep_pairs", false]], "get_dep_pairs_noneg() (in module features.politeness_v2_helper)": [[19, "features.politeness_v2_helper.get_dep_pairs_noneg", false]], "get_discursive_diversity_features() (utils.calculate_conversation_level_features.conversationlevelfeaturescalculator method)": [[65, "utils.calculate_conversation_level_features.ConversationLevelFeaturesCalculator.get_discursive_diversity_features", false]], "get_first_pct_of_chat() (feature_builder.featurebuilder method)": [[2, "feature_builder.FeatureBuilder.get_first_pct_of_chat", false]], "get_first_person_words() (in module utils.preload_word_lists)": [[70, "utils.preload_word_lists.get_first_person_words", false]], "get_forward_flow() (in module features.fflow)": [[7, "features.fflow.get_forward_flow", false]], "get_forward_flow() (utils.calculate_chat_level_features.chatlevelfeaturescalculator method)": [[64, "utils.calculate_chat_level_features.ChatLevelFeaturesCalculator.get_forward_flow", false]], "get_function_words() (in module utils.preload_word_lists)": [[70, "utils.preload_word_lists.get_function_words", false]], "get_function_words_in_message() (in module features.word_mimicry)": [[28, "features.word_mimicry.get_function_words_in_message", false]], "get_gini() (in module utils.gini_coefficient)": [[68, "utils.gini_coefficient.get_gini", false]], "get_gini_features() (utils.calculate_conversation_level_features.conversationlevelfeaturescalculator method)": [[65, "utils.calculate_conversation_level_features.ConversationLevelFeaturesCalculator.get_gini_features", false]], "get_info_diversity() (in module features.information_diversity)": [[13, "features.information_diversity.get_info_diversity", false]], "get_info_exchange_wordcount() (in module features.info_exchange_zscore)": [[12, "features.info_exchange_zscore.get_info_exchange_wordcount", false]], "get_liwc_count() (in module features.lexical_features_v2)": [[14, "features.lexical_features_v2.get_liwc_count", false]], "get_max() (in module utils.summarize_features)": [[72, "utils.summarize_features.get_max", false]], "get_mimicry_bert() (in module features.word_mimicry)": [[28, "features.word_mimicry.get_mimicry_bert", false]], "get_min() (in module utils.summarize_features)": [[72, "utils.summarize_features.get_min", false]], "get_moving_mimicry() (in module features.word_mimicry)": [[28, "features.word_mimicry.get_moving_mimicry", false]], "get_named_entity() (utils.calculate_chat_level_features.chatlevelfeaturescalculator method)": [[64, "utils.calculate_chat_level_features.ChatLevelFeaturesCalculator.get_named_entity", false]], "get_nan_vector() (in module features.within_person_discursive_range)": [[27, "features.within_person_discursive_range.get_nan_vector", false]], "get_nan_vector() (in module utils.check_embeddings)": [[67, "utils.check_embeddings.get_nan_vector", false]], "get_polarity_score() (in module features.textblob_sentiment_analysis)": [[24, "features.textblob_sentiment_analysis.get_polarity_score", false]], "get_politeness_strategies() (in module features.politeness_features)": [[17, "features.politeness_features.get_politeness_strategies", false]], "get_politeness_v2() (in module features.politeness_v2)": [[18, "features.politeness_v2.get_politeness_v2", false]], "get_proportion_first_pronouns() (in module features.other_lexical_features)": [[16, "features.other_lexical_features.get_proportion_first_pronouns", false]], "get_question_words() (in module utils.preload_word_lists)": [[70, "utils.preload_word_lists.get_question_words", false]], "get_reddit_features() (utils.calculate_chat_level_features.chatlevelfeaturescalculator method)": [[64, "utils.calculate_chat_level_features.ChatLevelFeaturesCalculator.get_reddit_features", false]], "get_sentiment() (in module utils.check_embeddings)": [[67, "utils.check_embeddings.get_sentiment", false]], "get_stdev() (in module utils.summarize_features)": [[72, "utils.summarize_features.get_stdev", false]], "get_subjectivity_score() (in module features.textblob_sentiment_analysis)": [[24, "features.textblob_sentiment_analysis.get_subjectivity_score", false]], "get_sum() (in module utils.summarize_features)": [[72, "utils.summarize_features.get_sum", false]], "get_team_burstiness() (in module features.burstiness)": [[4, "features.burstiness.get_team_burstiness", false]], "get_temporal_features() (utils.calculate_chat_level_features.chatlevelfeaturescalculator method)": [[64, "utils.calculate_chat_level_features.ChatLevelFeaturesCalculator.get_temporal_features", false]], "get_time_diff() (in module features.temporal_features)": [[23, "features.temporal_features.get_time_diff", false]], "get_time_diff_startend() (in module features.temporal_features)": [[23, "features.temporal_features.get_time_diff_startend", false]], "get_turn() (in module features.turn_taking_features)": [[25, "features.turn_taking_features.get_turn", false]], "get_turn_id() (in module utils.preprocess)": [[71, "utils.preprocess.get_turn_id", false]], "get_turn_taking_features() (utils.calculate_conversation_level_features.conversationlevelfeaturescalculator method)": [[65, "utils.calculate_conversation_level_features.ConversationLevelFeaturesCalculator.get_turn_taking_features", false]], "get_unique_pairwise_combos() (in module features.discursive_diversity)": [[6, "features.discursive_diversity.get_unique_pairwise_combos", false]], "get_user_average_dataframe() (in module utils.summarize_features)": [[72, "utils.summarize_features.get_user_average_dataframe", false]], "get_user_level_aggregates() (utils.calculate_conversation_level_features.conversationlevelfeaturescalculator method)": [[65, "utils.calculate_conversation_level_features.ConversationLevelFeaturesCalculator.get_user_level_aggregates", false]], "get_user_level_averaged_features() (utils.calculate_user_level_features.userlevelfeaturescalculator method)": [[66, "utils.calculate_user_level_features.UserLevelFeaturesCalculator.get_user_level_averaged_features", false]], "get_user_level_summary_statistics_features() (utils.calculate_user_level_features.userlevelfeaturescalculator method)": [[66, "utils.calculate_user_level_features.UserLevelFeaturesCalculator.get_user_level_summary_statistics_features", false]], "get_user_level_summed_features() (utils.calculate_user_level_features.userlevelfeaturescalculator method)": [[66, "utils.calculate_user_level_features.UserLevelFeaturesCalculator.get_user_level_summed_features", false]], "get_user_network() (in module features.get_user_network)": [[9, "features.get_user_network.get_user_network", false]], "get_user_network() (utils.calculate_user_level_features.userlevelfeaturescalculator method)": [[66, "utils.calculate_user_level_features.UserLevelFeaturesCalculator.get_user_network", false]], "get_user_sum_dataframe() (in module utils.summarize_features)": [[72, "utils.summarize_features.get_user_sum_dataframe", false]], "get_variance_in_dd() (in module features.variance_in_dd)": [[26, "features.variance_in_DD.get_variance_in_DD", false]], "get_within_person_disc_range() (in module features.within_person_discursive_range)": [[27, "features.within_person_discursive_range.get_within_person_disc_range", false]], "get_word_ttr() (in module features.other_lexical_features)": [[16, "features.other_lexical_features.get_word_TTR", false]], "get_zscore_across_all_chats() (in module utils.zscore_chats_and_conversation)": [[73, "utils.zscore_chats_and_conversation.get_zscore_across_all_chats", false]], "get_zscore_across_all_conversations() (in module utils.zscore_chats_and_conversation)": [[73, "utils.zscore_chats_and_conversation.get_zscore_across_all_conversations", false]], "gini_coefficient() (in module utils.gini_coefficient)": [[68, "utils.gini_coefficient.gini_coefficient", false]], "info_diversity() (in module features.information_diversity)": [[13, "features.information_diversity.info_diversity", false]], "info_exchange() (utils.calculate_chat_level_features.chatlevelfeaturescalculator method)": [[64, "utils.calculate_chat_level_features.ChatLevelFeaturesCalculator.info_exchange", false]], "is_hedged_sentence_1() (in module features.hedge)": [[10, "features.hedge.is_hedged_sentence_1", false]], "lexical_features() (utils.calculate_chat_level_features.chatlevelfeaturescalculator method)": [[64, "utils.calculate_chat_level_features.ChatLevelFeaturesCalculator.lexical_features", false]], "liwc_features() (in module features.lexical_features_v2)": [[14, "features.lexical_features_v2.liwc_features", false]], "load_saved_data() (in module features.politeness_v2_helper)": [[19, "features.politeness_v2_helper.load_saved_data", false]], "load_to_dict() (in module features.politeness_v2_helper)": [[19, "features.politeness_v2_helper.load_to_dict", false]], "load_to_lists() (in module features.politeness_v2_helper)": [[19, "features.politeness_v2_helper.load_to_lists", false]], "merge_conv_data_with_original() (feature_builder.featurebuilder method)": [[2, "feature_builder.FeatureBuilder.merge_conv_data_with_original", false]], "mimic_words() (in module features.word_mimicry)": [[28, "features.word_mimicry.mimic_words", false]], "module": [[2, "module-feature_builder", false], [3, "module-features.basic_features", false], [4, "module-features.burstiness", false], [5, "module-features.certainty", false], [6, "module-features.discursive_diversity", false], [7, "module-features.fflow", false], [8, "module-features.get_all_DD_features", false], [9, "module-features.get_user_network", false], [10, "module-features.hedge", false], [12, "module-features.info_exchange_zscore", false], [13, "module-features.information_diversity", false], [14, "module-features.lexical_features_v2", false], [15, "module-features.named_entity_recognition_features", false], [16, "module-features.other_lexical_features", false], [17, "module-features.politeness_features", false], [18, "module-features.politeness_v2", false], [19, "module-features.politeness_v2_helper", false], [20, "module-features.question_num", false], [21, "module-features.readability", false], [22, "module-features.reddit_tags", false], [23, "module-features.temporal_features", false], [24, "module-features.textblob_sentiment_analysis", false], [25, "module-features.turn_taking_features", false], [26, "module-features.variance_in_DD", false], [27, "module-features.within_person_discursive_range", false], [28, "module-features.word_mimicry", false], [63, "module-utils.assign_chunk_nums", false], [64, "module-utils.calculate_chat_level_features", false], [65, "module-utils.calculate_conversation_level_features", false], [66, "module-utils.calculate_user_level_features", false], [67, "module-utils.check_embeddings", false], [68, "module-utils.gini_coefficient", false], [70, "module-utils.preload_word_lists", false], [71, "module-utils.preprocess", false], [72, "module-utils.summarize_features", false], [73, "module-utils.zscore_chats_and_conversation", false]], "named_entities() (in module features.named_entity_recognition_features)": [[15, "features.named_entity_recognition_features.named_entities", false]], "num_named_entity() (in module features.named_entity_recognition_features)": [[15, "features.named_entity_recognition_features.num_named_entity", false]], "other_lexical_features() (utils.calculate_chat_level_features.chatlevelfeaturescalculator method)": [[64, "utils.calculate_chat_level_features.ChatLevelFeaturesCalculator.other_lexical_features", false]], "phrase_split() (in module features.politeness_v2_helper)": [[19, "features.politeness_v2_helper.phrase_split", false]], "positivity_zscore() (utils.calculate_chat_level_features.chatlevelfeaturescalculator method)": [[64, "utils.calculate_chat_level_features.ChatLevelFeaturesCalculator.positivity_zscore", false]], "prep_simple() (in module features.politeness_v2_helper)": [[19, "features.politeness_v2_helper.prep_simple", false]], "prep_whole() (in module features.politeness_v2_helper)": [[19, "features.politeness_v2_helper.prep_whole", false]], "preprocess_chat_data() (feature_builder.featurebuilder method)": [[2, "feature_builder.FeatureBuilder.preprocess_chat_data", false]], "preprocess_conversation_columns() (in module utils.preprocess)": [[71, "utils.preprocess.preprocess_conversation_columns", false]], "preprocess_naive_turns() (in module utils.preprocess)": [[71, "utils.preprocess.preprocess_naive_turns", false]], "preprocess_text() (in module utils.preprocess)": [[71, "utils.preprocess.preprocess_text", false]], "preprocess_text_lowercase_but_retain_punctuation() (in module utils.preprocess)": [[71, "utils.preprocess.preprocess_text_lowercase_but_retain_punctuation", false]], "preprocessing() (in module features.information_diversity)": [[13, "features.information_diversity.preprocessing", false]], "punctuation_seperator() (in module features.politeness_v2_helper)": [[19, "features.politeness_v2_helper.punctuation_seperator", false]], "question() (in module features.politeness_v2_helper)": [[19, "features.politeness_v2_helper.Question", false]], "read_in_lexicons() (in module utils.check_embeddings)": [[67, "utils.check_embeddings.read_in_lexicons", false]], "reduce_chunks() (in module utils.assign_chunk_nums)": [[63, "utils.assign_chunk_nums.reduce_chunks", false]], "remove_active_user() (in module features.get_user_network)": [[9, "features.get_user_network.remove_active_user", false]], "save_features() (feature_builder.featurebuilder method)": [[2, "feature_builder.FeatureBuilder.save_features", false]], "sentence_pad() (in module features.politeness_v2_helper)": [[19, "features.politeness_v2_helper.sentence_pad", false]], "sentence_split() (in module features.politeness_v2_helper)": [[19, "features.politeness_v2_helper.sentence_split", false]], "sentenciser() (in module features.politeness_v2_helper)": [[19, "features.politeness_v2_helper.sentenciser", false]], "set_self_conv_data() (feature_builder.featurebuilder method)": [[2, "feature_builder.FeatureBuilder.set_self_conv_data", false]], "str_to_vec() (in module utils.check_embeddings)": [[67, "utils.check_embeddings.str_to_vec", false]], "text_based_features() (utils.calculate_chat_level_features.chatlevelfeaturescalculator method)": [[64, "utils.calculate_chat_level_features.ChatLevelFeaturesCalculator.text_based_features", false]], "token_count() (in module features.politeness_v2_helper)": [[19, "features.politeness_v2_helper.token_count", false]], "train_spacy_ner() (in module features.named_entity_recognition_features)": [[15, "features.named_entity_recognition_features.train_spacy_ner", false]], "user_level_features() (feature_builder.featurebuilder method)": [[2, "feature_builder.FeatureBuilder.user_level_features", false]], "userlevelfeaturescalculator (class in utils.calculate_user_level_features)": [[66, "utils.calculate_user_level_features.UserLevelFeaturesCalculator", false]], "utils.assign_chunk_nums": [[63, "module-utils.assign_chunk_nums", false]], "utils.calculate_chat_level_features": [[64, "module-utils.calculate_chat_level_features", false]], "utils.calculate_conversation_level_features": [[65, "module-utils.calculate_conversation_level_features", false]], "utils.calculate_user_level_features": [[66, "module-utils.calculate_user_level_features", false]], "utils.check_embeddings": [[67, "module-utils.check_embeddings", false]], "utils.gini_coefficient": [[68, "module-utils.gini_coefficient", false]], "utils.preload_word_lists": [[70, "module-utils.preload_word_lists", false]], "utils.preprocess": [[71, "module-utils.preprocess", false]], "utils.summarize_features": [[72, "module-utils.summarize_features", false]], "utils.zscore_chats_and_conversation": [[73, "module-utils.zscore_chats_and_conversation", false]], "word_start() (in module features.politeness_v2_helper)": [[19, "features.politeness_v2_helper.word_start", false]]}, "objects": {"": [[2, 0, 0, "-", "feature_builder"]], "feature_builder": [[2, 1, 1, "", "FeatureBuilder"]], "feature_builder.FeatureBuilder": [[2, 2, 1, "", "chat_level_features"], [2, 2, 1, "", "conv_level_features"], [2, 2, 1, "", "featurize"], [2, 2, 1, "", "get_first_pct_of_chat"], [2, 2, 1, "", "merge_conv_data_with_original"], [2, 2, 1, "", "preprocess_chat_data"], [2, 2, 1, "", "save_features"], [2, 2, 1, "", "set_self_conv_data"], [2, 2, 1, "", "user_level_features"]], "features": [[3, 0, 0, "-", "basic_features"], [4, 0, 0, "-", "burstiness"], [5, 0, 0, "-", "certainty"], [6, 0, 0, "-", "discursive_diversity"], [7, 0, 0, "-", "fflow"], [8, 0, 0, "-", "get_all_DD_features"], [9, 0, 0, "-", "get_user_network"], [10, 0, 0, "-", "hedge"], [12, 0, 0, "-", "info_exchange_zscore"], [13, 0, 0, "-", "information_diversity"], [14, 0, 0, "-", "lexical_features_v2"], [15, 0, 0, "-", "named_entity_recognition_features"], [16, 0, 0, "-", "other_lexical_features"], [17, 0, 0, "-", "politeness_features"], [18, 0, 0, "-", "politeness_v2"], [19, 0, 0, "-", "politeness_v2_helper"], [20, 0, 0, "-", "question_num"], [21, 0, 0, "-", "readability"], [22, 0, 0, "-", "reddit_tags"], [23, 0, 0, "-", "temporal_features"], [24, 0, 0, "-", "textblob_sentiment_analysis"], [25, 0, 0, "-", "turn_taking_features"], [26, 0, 0, "-", "variance_in_DD"], [27, 0, 0, "-", "within_person_discursive_range"], [28, 0, 0, "-", "word_mimicry"]], "features.basic_features": [[3, 3, 1, "", "count_characters"], [3, 3, 1, "", "count_messages"], [3, 3, 1, "", "count_words"]], "features.burstiness": [[4, 3, 1, "", "burstiness"], [4, 3, 1, "", "get_team_burstiness"]], "features.certainty": [[5, 3, 1, "", "get_certainty"]], "features.discursive_diversity": [[6, 3, 1, "", "get_DD"], [6, 3, 1, "", "get_cosine_similarity"], [6, 3, 1, "", "get_unique_pairwise_combos"]], "features.fflow": [[7, 3, 1, "", "get_forward_flow"]], "features.get_all_DD_features": [[8, 3, 1, "", "conv_to_float_arr"], [8, 3, 1, "", "get_DD_features"]], "features.get_user_network": [[9, 3, 1, "", "get_user_network"], [9, 3, 1, "", "remove_active_user"]], "features.hedge": [[10, 3, 1, "", "is_hedged_sentence_1"]], "features.info_exchange_zscore": [[12, 3, 1, "", "get_info_exchange_wordcount"]], "features.information_diversity": [[13, 3, 1, "", "calculate_ID_score"], [13, 3, 1, "", "get_info_diversity"], [13, 3, 1, "", "info_diversity"], [13, 3, 1, "", "preprocessing"]], "features.lexical_features_v2": [[14, 3, 1, "", "get_liwc_count"], [14, 3, 1, "", "liwc_features"]], "features.named_entity_recognition_features": [[15, 3, 1, "", "built_spacy_ner"], [15, 3, 1, "", "calculate_named_entities"], [15, 3, 1, "", "named_entities"], [15, 3, 1, "", "num_named_entity"], [15, 3, 1, "", "train_spacy_ner"]], "features.other_lexical_features": [[16, 3, 1, "", "classify_NTRI"], [16, 3, 1, "", "get_proportion_first_pronouns"], [16, 3, 1, "", "get_word_TTR"]], "features.politeness_features": [[17, 3, 1, "", "get_politeness_strategies"]], "features.politeness_v2": [[18, 3, 1, "", "get_politeness_v2"]], "features.politeness_v2_helper": [[19, 3, 1, "", "Question"], [19, 3, 1, "", "adverb_limiter"], [19, 3, 1, "", "bare_command"], [19, 3, 1, "", "clean_text"], [19, 3, 1, "", "commit_data"], [19, 3, 1, "", "conjection_seperator"], [19, 3, 1, "", "count_matches"], [19, 3, 1, "", "count_spacy_matches"], [19, 3, 1, "", "feat_counts"], [19, 3, 1, "", "get_dep_pairs"], [19, 3, 1, "", "get_dep_pairs_noneg"], [19, 3, 1, "", "load_saved_data"], [19, 3, 1, "", "load_to_dict"], [19, 3, 1, "", "load_to_lists"], [19, 3, 1, "", "phrase_split"], [19, 3, 1, "", "prep_simple"], [19, 3, 1, "", "prep_whole"], [19, 3, 1, "", "punctuation_seperator"], [19, 3, 1, "", "sentence_pad"], [19, 3, 1, "", "sentence_split"], [19, 3, 1, "", "sentenciser"], [19, 3, 1, "", "token_count"], [19, 3, 1, "", "word_start"]], "features.question_num": [[20, 3, 1, "", "calculate_num_question_naive"]], "features.readability": [[21, 3, 1, "", "classify_text_dalechall"], [21, 3, 1, "", "count_difficult_words"], [21, 3, 1, "", "count_syllables"], [21, 3, 1, "", "dale_chall_helper"]], "features.reddit_tags": [[22, 3, 1, "", "count_all_caps"], [22, 3, 1, "", "count_bullet_points"], [22, 3, 1, "", "count_ellipses"], [22, 3, 1, "", "count_emojis"], [22, 3, 1, "", "count_emphasis"], [22, 3, 1, "", "count_line_breaks"], [22, 3, 1, "", "count_links"], [22, 3, 1, "", "count_numbering"], [22, 3, 1, "", "count_parentheses"], [22, 3, 1, "", "count_quotes"], [22, 3, 1, "", "count_responding_to_someone"], [22, 3, 1, "", "count_user_references"]], "features.temporal_features": [[23, 3, 1, "", "coerce_to_date_or_number"], [23, 3, 1, "", "get_time_diff"], [23, 3, 1, "", "get_time_diff_startend"]], "features.textblob_sentiment_analysis": [[24, 3, 1, "", "get_polarity_score"], [24, 3, 1, "", "get_subjectivity_score"]], "features.turn_taking_features": [[25, 3, 1, "", "count_turn_taking_index"], [25, 3, 1, "", "count_turns"], [25, 3, 1, "", "get_turn"]], "features.variance_in_DD": [[26, 3, 1, "", "get_variance_in_DD"]], "features.within_person_discursive_range": [[27, 3, 1, "", "get_nan_vector"], [27, 3, 1, "", "get_within_person_disc_range"]], "features.word_mimicry": [[28, 3, 1, "", "Content_mimicry_score"], [28, 3, 1, "", "Content_mimicry_score_per_conv"], [28, 3, 1, "", "computeTF"], [28, 3, 1, "", "compute_frequency"], [28, 3, 1, "", "compute_frequency_per_conv"], [28, 3, 1, "", "function_mimicry_score"], [28, 3, 1, "", "get_content_words_in_message"], [28, 3, 1, "", "get_function_words_in_message"], [28, 3, 1, "", "get_mimicry_bert"], [28, 3, 1, "", "get_moving_mimicry"], [28, 3, 1, "", "mimic_words"]], "utils": [[63, 0, 0, "-", "assign_chunk_nums"], [64, 0, 0, "-", "calculate_chat_level_features"], [65, 0, 0, "-", "calculate_conversation_level_features"], [66, 0, 0, "-", "calculate_user_level_features"], [67, 0, 0, "-", "check_embeddings"], [68, 0, 0, "-", "gini_coefficient"], [70, 0, 0, "-", "preload_word_lists"], [71, 0, 0, "-", "preprocess"], [72, 0, 0, "-", "summarize_features"], [73, 0, 0, "-", "zscore_chats_and_conversation"]], "utils.assign_chunk_nums": [[63, 3, 1, "", "assign_chunk_nums"], [63, 3, 1, "", "create_chunks"], [63, 3, 1, "", "create_chunks_messages"], [63, 3, 1, "", "reduce_chunks"]], "utils.calculate_chat_level_features": [[64, 1, 1, "", "ChatLevelFeaturesCalculator"]], "utils.calculate_chat_level_features.ChatLevelFeaturesCalculator": [[64, 2, 1, "", "calculate_chat_level_features"], [64, 2, 1, "", "calculate_hedge_features"], [64, 2, 1, "", "calculate_politeness_sentiment"], [64, 2, 1, "", "calculate_politeness_v2"], [64, 2, 1, "", "calculate_textblob_sentiment"], [64, 2, 1, "", "calculate_vector_word_mimicry"], [64, 2, 1, "", "calculate_word_mimicry"], [64, 2, 1, "", "concat_bert_features"], [64, 2, 1, "", "get_certainty_score"], [64, 2, 1, "", "get_dale_chall_score_and_classfication"], [64, 2, 1, "", "get_forward_flow"], [64, 2, 1, "", "get_named_entity"], [64, 2, 1, "", "get_reddit_features"], [64, 2, 1, "", "get_temporal_features"], [64, 2, 1, "", "info_exchange"], [64, 2, 1, "", "lexical_features"], [64, 2, 1, "", "other_lexical_features"], [64, 2, 1, "", "positivity_zscore"], [64, 2, 1, "", "text_based_features"]], "utils.calculate_conversation_level_features": [[65, 1, 1, "", "ConversationLevelFeaturesCalculator"]], "utils.calculate_conversation_level_features.ConversationLevelFeaturesCalculator": [[65, 2, 1, "", "calculate_conversation_level_features"], [65, 2, 1, "", "calculate_info_diversity"], [65, 2, 1, "", "calculate_team_burstiness"], [65, 2, 1, "", "get_conversation_level_aggregates"], [65, 2, 1, "", "get_discursive_diversity_features"], [65, 2, 1, "", "get_gini_features"], [65, 2, 1, "", "get_turn_taking_features"], [65, 2, 1, "", "get_user_level_aggregates"]], "utils.calculate_user_level_features": [[66, 1, 1, "", "UserLevelFeaturesCalculator"]], "utils.calculate_user_level_features.UserLevelFeaturesCalculator": [[66, 2, 1, "", "calculate_user_level_features"], [66, 2, 1, "", "get_centroids"], [66, 2, 1, "", "get_user_level_averaged_features"], [66, 2, 1, "", "get_user_level_summary_statistics_features"], [66, 2, 1, "", "get_user_level_summed_features"], [66, 2, 1, "", "get_user_network"]], "utils.check_embeddings": [[67, 3, 1, "", "check_embeddings"], [67, 3, 1, "", "generate_bert"], [67, 3, 1, "", "generate_certainty_pkl"], [67, 3, 1, "", "generate_lexicon_pkl"], [67, 3, 1, "", "generate_vect"], [67, 3, 1, "", "get_nan_vector"], [67, 3, 1, "", "get_sentiment"], [67, 3, 1, "", "read_in_lexicons"], [67, 3, 1, "", "str_to_vec"]], "utils.gini_coefficient": [[68, 3, 1, "", "get_gini"], [68, 3, 1, "", "gini_coefficient"]], "utils.preload_word_lists": [[70, 3, 1, "", "get_dale_chall_easy_words"], [70, 3, 1, "", "get_first_person_words"], [70, 3, 1, "", "get_function_words"], [70, 3, 1, "", "get_question_words"]], "utils.preprocess": [[71, 3, 1, "", "assert_key_columns_present"], [71, 3, 1, "", "compress"], [71, 3, 1, "", "create_cumulative_rows"], [71, 3, 1, "", "get_turn_id"], [71, 3, 1, "", "preprocess_conversation_columns"], [71, 3, 1, "", "preprocess_naive_turns"], [71, 3, 1, "", "preprocess_text"], [71, 3, 1, "", "preprocess_text_lowercase_but_retain_punctuation"]], "utils.summarize_features": [[72, 3, 1, "", "get_average"], [72, 3, 1, "", "get_max"], [72, 3, 1, "", "get_min"], [72, 3, 1, "", "get_stdev"], [72, 3, 1, "", "get_sum"], [72, 3, 1, "", "get_user_average_dataframe"], [72, 3, 1, "", "get_user_sum_dataframe"]], "utils.zscore_chats_and_conversation": [[73, 3, 1, "", "get_zscore_across_all_chats"], [73, 3, 1, "", "get_zscore_across_all_conversations"]]}, "objnames": {"0": ["py", "module", "Python module"], "1": ["py", "class", "Python class"], "2": ["py", "method", "Python method"], "3": ["py", "function", "Python function"]}, "objtypes": {"0": "py:module", "1": "py:class", "2": "py:method", "3": "py:function"}, "terms": {"": [0, 1, 2, 4, 5, 9, 11, 13, 25, 28, 29, 31, 32, 34, 35, 36, 40, 41, 42, 43, 44, 45, 46, 47, 49, 50, 51, 52, 55, 59, 61, 62, 64, 65, 66], "0": [0, 1, 2, 5, 10, 13, 16, 21, 24, 30, 31, 32, 33, 34, 35, 36, 37, 38, 40, 41, 42, 43, 45, 46, 47, 50, 51, 53, 55, 59, 61], "000": 42, "00222437221134802": [5, 64], "01": 51, "02": 51, "04": 40, "0496": [21, 33], "05": [13, 40, 50, 51], "06": 51, "08": 50, "09": [45, 46, 50], "1": [0, 1, 2, 3, 10, 13, 22, 24, 32, 34, 35, 37, 38, 40, 41, 42, 43, 44, 45, 46, 47, 48, 51, 53, 55, 56, 57, 59, 61, 62], "10": [1, 5, 6, 21, 24, 33, 42, 59, 61, 64], "100": [1, 21, 33, 37, 42, 47, 62], "1000": 42, "10th": 33, "1145": [21, 24], "1177": [5, 64], "11th": 33, "12": [35, 45, 46, 50], "1287": 6, "12th": 33, "13": 50, "14": 50, "15": [37, 50], "1579": [21, 33], "17": 50, "1948": 33, "195": 36, "1977": 62, "1d": 67, "1lpngokujsx": 5, "1st": 50, "1st_person": 50, "1st_person_pl": 50, "1st_person_start": 50, "2": [0, 1, 2, 34, 35, 41, 47, 59, 61, 62], "20": [37, 59], "2004": 42, "2007": [5, 42], "2009": 60, "2012": 55, "2013": [12, 16, 31, 32, 36, 37, 38, 41, 43, 50, 52, 54, 70], "2015": [53, 58, 60], "2016": 4, "2017": 13, "2018": [40, 44, 55], "2019": [35, 52], "2020": [18, 21, 24, 33, 49, 50, 56, 57], "2021": [1, 6, 43, 44], "2022": [13, 34], "2023": [1, 5, 30, 59, 61, 64], "2024": 40, "21": 59, "22": [41, 50], "2384068": 4, "24": [1, 61], "25": 47, "27": 50, "28": 50, "29": 50, "2nd": 50, "2nd_person": 50, "2nd_person_start": 50, "3": [0, 1, 2, 21, 34, 41, 42, 51, 59, 61, 71], "30": 50, "3000": 33, "32": [34, 50], "3432929": [21, 24], "35": 51, "36": 50, "38": 50, "39": 49, "39512260": 68, "3n": 59, "4": [0, 1, 5, 13, 21, 30, 33, 41, 42, 56, 61, 62], "4274": 6, "43": 50, "45": 50, "47": 50, "49": 50, "4pit4bqz6": 5, "4th": [21, 33], "5": [1, 5, 21, 30, 33, 37, 41, 59], "50": [1, 47], "52": 50, "53": 50, "57": 50, "58": 50, "5th": 33, "6": [1, 33, 43], "60": 51, "63": 50, "6365": 21, "64": 67, "68": 47, "6th": 33, "7": [30, 33, 48], "70": 50, "78": [35, 50], "7th": 33, "8": [1, 30, 33], "80": [21, 70], "82": 41, "85": 34, "86": 35, "87": 50, "89": [45, 46], "8th": 33, "9": [2, 5, 21, 30, 33, 40, 47, 50], "9123": 47, "92": 51, "93chall_readability_formula": [21, 70], "94": 15, "95": 47, "97": 51, "9855072464": 47, "9992": 47, "99954": 47, "9th": 33, "A": [1, 2, 4, 12, 13, 14, 15, 16, 17, 18, 19, 21, 23, 25, 28, 33, 34, 35, 37, 38, 40, 41, 44, 45, 46, 47, 49, 50, 51, 52, 57, 59, 60, 61, 62, 66, 67, 68, 70, 71, 72, 73], "And": [1, 62], "As": [1, 31, 35, 36, 40, 45, 61], "But": [1, 50, 62], "By": [1, 42, 50], "For": [0, 1, 31, 34, 37, 41, 42, 43, 47, 49, 54, 56, 59, 62, 65], "If": [0, 1, 2, 5, 21, 29, 30, 35, 45, 47, 50, 55, 61, 62, 63, 64, 67, 71], "In": [1, 21, 30, 31, 34, 35, 36, 37, 39, 41, 42, 45, 46, 47, 50, 55, 59, 61, 62], "It": [1, 2, 31, 32, 33, 36, 37, 41, 44, 45, 46, 50, 64, 65, 66, 67, 71], "NO": 37, "NOT": [1, 61], "No": [19, 53], "Not": 41, "One": [1, 37, 61], "That": [29, 55], "The": [1, 2, 3, 4, 5, 7, 9, 10, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 28, 30, 31, 32, 33, 34, 35, 36, 37, 38, 40, 41, 42, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 58, 59, 60, 63, 64, 65, 66, 67, 68, 69, 71, 72, 73], "Then": [1, 55, 61], "There": [1, 11, 32, 61, 66], "These": [1, 11, 17, 32, 34, 42, 48, 52, 61, 62, 69], "To": [0, 1, 29, 31, 34, 37, 40, 55, 56, 57, 61, 62], "WITH": 21, "Will": 50, "_deviat": 55, "_preprocessed_": 0, "abil": [13, 29], "abl": [31, 36, 61], "abort": 1, "about": [1, 12, 29, 31, 36, 41, 47, 61, 62], "abov": [1, 21, 34, 61], "abstract_id": 4, "accept": [0, 1, 58, 61], "access": [0, 1, 15, 61], "accommod": [28, 32, 39, 45, 46, 64, 65, 66], "accord": [21, 37, 59, 64, 70], "accordingli": 63, "account": [1, 29, 32, 42], "accus": 50, "achiev": [50, 62], "acknowledg": 49, "acm": [21, 24], "acommod": 36, "across": [1, 13, 28, 31, 34, 40, 41, 50, 62, 64, 73], "action": 59, "activ": [1, 9, 44, 55, 71], "actual": [41, 56], "ad": [61, 62, 71], "adapt": 59, "add": [0, 1, 2, 21, 51, 61], "addit": [2, 32, 34, 42, 63, 69], "addition": [0, 30, 31, 32, 54], "address": 1, "adjac": 71, "adjust": [0, 21, 37, 63], "advanc": [31, 36], "advantag": 4, "adverb": [19, 31, 36], "adverb_limit": [19, 49], "affect": [0, 1, 29, 35, 44], "affirm": 49, "after": [0, 1, 31, 34, 36, 43, 61, 62, 64], "again": [32, 34], "against": [28, 31, 36, 52], "agarw": 62, "aggreg": [0, 1, 3, 11, 37, 44, 61, 62, 65, 66, 72], "agre": 47, "agreement": 49, "ah": [31, 36], "ai": 62, "aim": [39, 62], "airtim": [37, 62], "al": [1, 5, 16, 18, 21, 24, 30, 31, 32, 33, 34, 35, 36, 38, 42, 43, 44, 49, 50, 52, 53, 54, 56, 57, 58, 59, 60, 64], "algorithm": [56, 57], "align": [35, 51], "all": [0, 1, 2, 6, 12, 13, 15, 19, 22, 28, 30, 31, 34, 35, 36, 37, 40, 41, 42, 46, 48, 49, 51, 52, 55, 58, 61, 62, 64, 66, 71, 73], "allow": 1, "almaatouq": 59, "along": 1, "alongsid": 1, "alphabet": 49, "alphanumer": 71, "alreadi": [0, 1, 2, 4, 10, 12, 16, 67], "also": [0, 1, 2, 28, 30, 31, 32, 34, 36, 37, 38, 42, 47, 51, 54, 60, 61, 62, 64, 65, 67, 69, 71], "alsobai": 59, "altern": 59, "although": [1, 23, 31, 36], "alwai": [1, 55], "am": [31, 36, 42, 54, 62], "amaz": [48, 56], "ambient": 32, "american": 33, "ami": [47, 59, 62], "amic": 62, "among": [36, 37, 52, 55, 62], "amongst": [6, 35, 48], "an": [0, 1, 2, 5, 8, 11, 12, 13, 21, 29, 30, 31, 32, 33, 34, 36, 38, 40, 41, 42, 45, 47, 48, 50, 51, 52, 54, 59, 60, 61, 62, 63, 65, 66, 67, 68], "analys": [1, 62], "analysi": [0, 1, 11, 52, 62, 67, 71], "analyt": 62, "analyz": [0, 1, 2, 13, 14, 16, 17, 19, 20, 21, 22, 24, 28, 43, 52, 62, 67, 71], "analyze_first_pct": [0, 1, 2], "angri": 47, "ani": [0, 1, 29, 31, 33, 38, 54, 62, 71], "annot": [17, 50], "anoth": [30, 34, 36, 48], "answer": 29, "anybodi": [31, 36], "anyth": [1, 2, 23, 31, 36, 56], "anywher": [31, 36], "apartment": 42, "api": [2, 47], "api_refer": 24, "apolog": [17, 50], "apologi": 49, "appear": [0, 15, 28, 31, 37, 38, 42, 64], "append": [1, 17, 64, 65, 66, 67], "appli": [4, 13, 18, 62, 64, 69], "applic": [29, 71], "appreci": 50, "approach": [32, 38, 42, 45, 46, 49, 53, 64], "appropri": [31, 69], "ar": [0, 1, 2, 3, 5, 9, 10, 11, 15, 17, 19, 21, 23, 28, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 45, 46, 47, 48, 49, 51, 54, 55, 56, 57, 58, 59, 61, 62, 63, 64, 65, 66, 67, 69, 71], "arcross": 34, "area": 62, "aren": [31, 36], "around": 2, "arous": 48, "arrai": [6, 8, 67, 68], "articl": [37, 50], "ask": [20, 47, 54], "ask_ag": 49, "aspect": [50, 62], "assert_key_columns_pres": 71, "assign": [1, 31, 36, 38, 45, 46, 52, 59, 61, 63, 71], "assign_chunk_num": 69, "associ": [4, 15, 21, 29, 30, 31, 32, 36, 40, 45, 46, 47, 48, 61], "assum": [0, 1, 2, 10, 12, 16, 23, 31, 41, 60, 61, 71], "assumpt": [1, 41, 61], "asterisk": 22, "attribut": [1, 11, 34, 51, 52, 56, 62], "author": [5, 31, 36, 59], "auto": 2, "automat": [0, 1, 61, 69], "auxiliari": [31, 36], "avail": [0, 1, 61, 62, 63, 64, 67], "averag": [11, 13, 28, 30, 33, 34, 35, 40, 41, 46, 52, 64, 65, 66, 72], "avil": 62, "avoid": 30, "awar": 29, "awesom": 62, "b": [4, 34, 35, 45, 46, 55, 62], "back": 62, "bag": [32, 38, 42, 45, 46, 49, 53, 56, 57], "bare_command": [19, 49], "base": [0, 1, 2, 15, 18, 19, 31, 32, 34, 35, 36, 37, 40, 42, 51, 52, 53, 54, 55, 56, 57, 61, 62, 63, 64, 65, 66, 71], "basic": [10, 11, 12, 16, 61, 62], "basic_featur": 11, "batch": 67, "batch_num": 1, "batch_siz": 67, "bay": [56, 57], "bbevi": 18, "becaus": [1, 2, 12, 21, 31, 36, 40, 56, 61], "becom": [44, 61, 62], "been": [1, 2, 12, 16, 31, 36, 61], "befor": [0, 1, 2, 17, 31, 36, 45, 48], "beforehand": 64, "begin": [34, 54, 58, 61, 62, 63], "behavior": [0, 2, 62, 63], "being": [4, 13, 14, 16, 17, 20, 21, 24, 31, 32, 36, 43, 47, 51, 55, 56, 60], "belong": [1, 42], "below": [1, 11, 21, 33, 36, 45, 48, 51, 61, 62, 69], "ber": 54, "bert": [0, 1, 31, 35, 36, 39, 46, 61, 64, 67], "bert_path": 67, "bert_sentiment_data": [1, 61, 64], "best": 29, "better": [31, 61], "between": [4, 6, 13, 21, 23, 24, 28, 30, 31, 34, 35, 36, 37, 40, 45, 46, 55, 58, 59, 62, 64, 65], "betwen": 34, "beyond": 2, "big": 59, "binari": [10, 32, 38], "blame": 47, "blob": [1, 24, 61], "block": [22, 32, 48, 59], "blog": 15, "bold": [22, 64], "bool": [2, 63, 67, 71], "bootstrap": 62, "both": [1, 2, 42, 52, 54, 55, 59, 62], "bother": 50, "bottom": 59, "bought": 41, "bound": [29, 35, 36, 37, 42, 52, 55], "boundari": [34, 35], "break": [22, 48, 64], "brief": 44, "broader": 52, "broken": 59, "btw": 50, "bug": [1, 61], "build": [1, 7, 34, 45, 46, 62], "built": 11, "built_spacy_n": 15, "bullet": [22, 48, 64], "bunch": 59, "burst": 58, "bursti": [1, 11, 39, 58, 61, 65], "by_the_wai": 49, "c": [12, 34, 35, 45, 46, 62], "cach": [0, 1, 2, 51, 61], "calcul": [2, 5, 11, 12, 16, 18, 21, 28, 33, 41, 48, 49, 50, 56, 57, 58, 60, 62, 63, 64, 65, 66, 67, 68, 72, 73], "calculate_chat_level_featur": [1, 61, 69], "calculate_conversation_level_featur": 69, "calculate_hedge_featur": 64, "calculate_id_scor": 13, "calculate_info_divers": 65, "calculate_named_ent": 15, "calculate_num_question_na": 20, "calculate_politeness_senti": 64, "calculate_politeness_v2": 64, "calculate_team_bursti": 65, "calculate_textblob_senti": 64, "calculate_user_level_featur": 69, "calculate_vector_word_mimicri": 64, "calculate_word_mimicri": 64, "call": [1, 2, 8, 13, 61, 62, 64, 69], "can": [0, 1, 2, 11, 23, 31, 32, 33, 34, 36, 37, 42, 43, 44, 47, 48, 49, 50, 52, 54, 60, 61, 62, 69], "can_you": 49, "cannot": [1, 31, 36, 45, 46, 49, 62], "cao": [21, 24, 33, 43, 44, 56, 57, 62], "cap": [22, 48, 64], "capit": [0, 2, 48], "captur": [29, 30, 32, 34, 35, 38, 41, 42, 55], "caract": 40, "cardiffnlp": [1, 61], "carefulli": 60, "carri": 31, "casa_token": 5, "case": [1, 13, 16, 28, 29, 30, 31, 36, 37, 41, 45, 46, 51, 55, 56, 59, 61], "casual": 43, "categori": [21, 32, 45, 46, 49, 52], "caus": [31, 32, 36, 59], "caveat": 1, "center": 62, "central": 34, "centroid": [34, 66], "certain": [5, 19, 30, 42, 45, 46, 49], "certainli": 42, "certainti": [11, 38, 39, 42, 64, 67], "cfm": 4, "chall": [1, 21, 39, 64, 70], "chang": [0, 1, 34, 50, 61, 71], "charact": [2, 3, 15, 19, 37, 49, 62, 64, 65, 66, 71], "characterist": 62, "chat": [0, 1, 2, 4, 5, 6, 7, 8, 12, 13, 14, 16, 23, 25, 28, 29, 32, 35, 36, 41, 44, 45, 46, 49, 59, 61, 63, 64, 65, 66, 67, 68, 69, 71, 72, 73], "chat_data": [2, 6, 7, 8, 26, 27, 28, 63, 64, 65, 66, 67, 71], "chat_df": 14, "chat_featur": [1, 61], "chat_level_data": 72, "chat_level_featur": 2, "chatlevelfeaturescalcul": [1, 2, 17, 21, 61, 64, 69], "chats_data": 73, "check": [19, 23, 44, 64, 67, 71], "check_embed": [1, 61, 69], "chen": 62, "choos": 60, "chose": 1, "chronolog": 1, "chunk": [34, 59, 63], "chunk_num": 63, "circlelyt": 13, "citat": [21, 24], "cite": 50, "clarif": [16, 32, 64], "class": [1, 2, 31, 61, 62, 64, 65, 66], "classif": [21, 64], "classifi": [16, 21, 50, 56, 57], "classify_ntri": 16, "classify_text_dalechal": 21, "clean": [2, 17, 19, 67], "clean_text": 19, "clear": 1, "close": [31, 48, 62], "closer": [45, 46, 59], "clue": 62, "cmu": 12, "code": [6, 18, 29, 32, 51, 55, 61, 62, 68], "coeffici": [4, 39, 62, 65, 68], "coerce_to_date_or_numb": 23, "cognit": 62, "col": 2, "colab": [0, 1], "collabor": [59, 62], "collaps": 2, "collect": [1, 2, 34, 49, 50, 52, 61, 62], "colleg": 33, "column": [0, 2, 4, 6, 7, 8, 9, 12, 13, 14, 16, 18, 23, 25, 28, 51, 56, 62, 63, 64, 65, 66, 67, 68, 71, 72, 73], "column_count_frequ": 28, "column_count_mim": 28, "column_mimc": 28, "column_nam": 71, "column_to_summar": 72, "com": [1, 2, 4, 5, 13, 15, 18, 64, 68, 71], "comb": 62, "combin": [0, 1, 6, 28, 64, 71], "come": [1, 12, 13, 21, 32, 33, 58, 61], "comm": [1, 61], "command": [1, 61], "comment": 48, "commit": 23, "commit_data": 19, "common": [0, 32, 62, 64], "commonli": 37, "commun": [0, 1, 11, 44, 48, 55, 60, 62, 64], "companion": 1, "compar": [2, 31, 35, 44, 45, 52, 64, 71, 73], "compat": [0, 1, 61], "complement": [31, 36], "complet": [1, 2, 31, 55], "complex": [0, 35, 43, 50, 62], "compon": 50, "comprehens": [33, 48], "compress": 71, "comput": [0, 2, 4, 5, 6, 10, 11, 12, 13, 14, 28, 29, 30, 31, 34, 35, 36, 37, 40, 41, 42, 45, 46, 49, 52, 55, 62, 64, 65, 66, 69, 73], "compute_frequ": 28, "compute_frequency_per_conv": 28, "compute_vectors_from_preprocess": [0, 2], "computetf": 28, "conain": 61, "concat_bert_featur": [1, 61, 64], "concaten": [19, 49, 64, 71], "concentr": 55, "concept": [29, 39, 42, 62], "conceptu": [61, 62], "concis": 43, "concret": 29, "conduct": 1, "confid": [2, 5, 15, 30, 47, 64], "conflict": 62, "confound": 44, "congruent": 34, "conjection_seper": 19, "conjunct": [19, 31, 36, 49], "conjunction_start": 49, "connect": 39, "conscious": 35, "consecut": 22, "consequ": 0, "consid": [1, 33, 37], "consider": [61, 62], "consist": [31, 36, 40, 41], "constitut": 41, "constrain": [34, 35], "construct": [11, 55, 62], "constructor": 47, "consult": 5, "contain": [1, 2, 3, 4, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17, 18, 19, 23, 25, 28, 29, 30, 35, 38, 42, 47, 49, 55, 61, 62, 63, 64, 67, 71, 72, 73], "content": [0, 1, 12, 13, 28, 34, 36, 39, 41, 42, 45, 46, 62, 64, 67], "content_mimicry_scor": 28, "content_mimicry_score_per_conv": 28, "content_word_accommod": 31, "content_word_accommodation_per_conv": 31, "content_word_mimicri": 28, "context": [2, 32, 42, 48, 62, 71], "continu": [56, 57], "contract": 49, "contrast": 39, "contribut": [13, 34, 37, 62], "control": 1, "conv": [1, 61], "conv_data": [2, 65], "conv_features_al": [1, 61], "conv_features_bas": [1, 61], "conv_level_featur": 2, "conv_to_float_arr": 8, "convei": [6, 34, 52], "conveni": [1, 61], "convers": [0, 2, 3, 4, 6, 7, 8, 9, 12, 13, 23, 25, 28, 29, 31, 34, 35, 36, 37, 40, 41, 43, 44, 45, 46, 47, 48, 49, 50, 52, 55, 58, 59, 61, 63, 64, 65, 66, 68, 71, 72, 73], "conversation_id": [2, 28, 61, 71], "conversation_id_col": [0, 1, 2, 4, 6, 7, 8, 9, 13, 23, 25, 26, 27, 61, 63, 64, 65, 66, 68, 72, 73], "conversation_num": [0, 1, 2, 6, 7, 66, 71, 73], "conversationlevelfeaturescalcul": [2, 65, 69], "convert": [8, 41, 49, 71], "convict": 5, "convokit": [17, 50, 62, 64], "coordin": 55, "copi": [0, 1], "copular": [31, 36], "core": [34, 64, 69], "cornel": 17, "corpu": [0, 1, 50], "corrado": 37, "correl": [41, 55], "correspond": [30, 34, 35, 40, 49, 55, 66], "cosin": [6, 7, 13, 28, 31, 34, 35, 36, 40, 45, 46, 65], "could": [1, 31, 33, 36, 50, 54], "could_you": 49, "couldn": [31, 36], "count": [1, 3, 12, 14, 15, 16, 19, 21, 25, 28, 30, 31, 32, 36, 39, 41, 43, 44, 49, 52, 53, 54, 56, 58, 64, 65, 66], "count_all_cap": 22, "count_bullet_point": 22, "count_charact": 3, "count_difficult_word": 21, "count_ellips": 22, "count_emoji": 22, "count_emphasi": 22, "count_line_break": 22, "count_link": 22, "count_match": [19, 49], "count_messag": 3, "count_numb": 22, "count_parenthes": 22, "count_quot": 22, "count_responding_to_someon": 22, "count_spacy_match": 19, "count_syl": 21, "count_turn": 25, "count_turn_taking_index": 25, "count_user_refer": 22, "count_word": 3, "countabl": 65, "countd": 36, "counterfactu": 50, "cours": [16, 31, 34, 36, 63], "cover": 28, "creat": [0, 1, 2, 13, 19, 31, 40, 42, 61, 62, 64, 65, 66, 71], "create_chunk": 63, "create_chunks_messag": 63, "create_cumulative_row": 71, "credit": 33, "crowd": 13, "csv": [1, 2, 61, 62, 67], "cumul": [1, 2, 71], "cumulative_group": [0, 1, 2, 71], "current": [1, 11, 23, 31, 34, 35, 36, 40, 45, 46, 58, 61, 64, 71], "curt": 43, "custom": [0, 62], "custom_featur": [0, 1, 2, 61], "customiz": 62, "cut": 1, "cutoff": [2, 15, 47, 64], "d": [0, 1, 2, 31, 34, 36, 61], "dale": [1, 21, 39, 64, 70], "dale_chall_help": 21, "danescu": 50, "dash": 22, "data": [0, 2, 6, 7, 8, 9, 13, 19, 20, 32, 37, 40, 41, 47, 51, 55, 61, 62, 63, 64, 65, 66, 67, 68, 71, 72, 73], "datafram": [0, 1, 2, 4, 6, 7, 8, 9, 12, 13, 14, 15, 16, 17, 18, 19, 23, 25, 28, 37, 47, 49, 59, 61, 62, 63, 64, 65, 66, 67, 68, 71, 72, 73], "dataknowsal": 15, "dataset": [1, 2, 9, 12, 13, 28, 31, 41, 47, 52, 61, 64, 65, 66, 73], "date": [1, 61], "datetim": [23, 58], "dcosta": 62, "deal": [50, 59], "death": 1, "debat": 59, "decid": 62, "decis": [1, 13, 62], "declar": [1, 62, 69], "deepli": 62, "default": [0, 1, 2, 5, 13, 16, 23, 30, 34, 35, 42, 47, 62, 63, 66, 67, 71, 73], "defer": [17, 50], "defin": [0, 11, 21, 31, 34, 36, 40, 59, 62, 64, 65, 66, 70], "definit": [1, 3, 44], "degre": [6, 30, 36, 45, 46, 55], "delet": 29, "deliber": 1, "demo": 61, "democrat": 1, "demystifi": 62, "denomin": 59, "densiti": 60, "dep_": 49, "dep_pair": 19, "depend": [0, 1, 10, 19, 32, 49, 52, 61, 63], "deriv": [2, 11, 65, 66], "describ": [1, 11, 62], "descript": [1, 61], "design": [0, 1, 2, 13, 34, 62], "desir": [2, 63, 72], "detail": [0, 33, 41, 43, 61, 62], "detect": [1, 32, 37, 38, 47, 48, 49, 54], "determin": [13, 18, 31, 35, 36, 40, 45, 46, 71], "dev": 24, "develop": [5, 37, 40, 62], "deviat": [4, 5, 29, 40, 41, 55, 58, 65, 72, 73], "df": [4, 8, 9, 12, 13, 16, 18, 23, 28, 63, 71], "dict": [17, 19, 28, 67], "dictionari": [1, 15, 17, 19, 28, 30, 42, 49, 61, 67], "did": [1, 31, 36, 37, 47, 50, 54, 62], "didn": [31, 36], "differ": [0, 1, 2, 4, 11, 12, 23, 28, 29, 31, 34, 36, 37, 39, 40, 44, 45, 46, 47, 49, 55, 62, 63, 64, 65, 66, 71], "differenti": [49, 59], "difficult": [21, 33], "difficult_word": 21, "difficulti": 33, "dimens": [40, 62], "dimension": [34, 35], "dinner": 41, "direct": [34, 43, 45, 47, 50, 69], "direct_quest": [32, 50, 54], "direct_start": 50, "directli": [1, 62, 69], "directori": [0, 2, 19, 61, 65, 67], "disagr": 49, "disagre": 51, "discours": [31, 36], "discret": [31, 36, 45, 46], "discurs": [0, 1, 6, 8, 39, 40, 61, 65, 66], "discursive_divers": 11, "discus": 8, "discuss": [0, 1, 31, 34, 39, 40, 42, 43, 61, 62, 71], "dispers": 68, "displai": [1, 34, 42, 46, 61], "dispos": 1, "distanc": [34, 35, 40], "distinct": [31, 36, 59], "distinguish": 59, "distribut": 31, "div": 16, "diverg": [6, 34, 35], "divers": [0, 1, 6, 8, 13, 39, 61, 65], "divid": [16, 34, 59, 63], "dl": [21, 24], "do": [0, 1, 29, 31, 34, 36, 37, 43, 49, 50, 54, 62, 69], "doc": [2, 19], "doc_top": 13, "document": [1, 17, 61, 69], "doe": [1, 2, 29, 40, 42, 43, 45, 47, 54, 61, 71], "doesn": [0, 1, 2, 29, 31, 36, 45, 61], "doi": [5, 6, 21, 24, 64], "domain": [31, 50], "don": [31, 36, 49, 54, 62, 67], "done": [2, 50], "dot": 22, "doubl": 30, "down": [31, 36], "download": [1, 61], "download_resourc": [1, 61], "downstream": [17, 62], "dozen": 62, "drive": [62, 69], "driver": [2, 61, 64, 65, 66], "drop": [0, 2, 64], "due": [34, 59], "duncan": 62, "duplic": [1, 2, 71], "durat": [58, 63], "dure": [2, 55, 59, 62], "dynam": [59, 61], "e": [0, 1, 2, 4, 15, 20, 29, 30, 31, 32, 34, 35, 36, 37, 38, 41, 42, 47, 48, 49, 52, 54, 56, 59, 61, 63, 65, 66, 71], "e2": [21, 70], "each": [0, 1, 2, 3, 4, 7, 8, 9, 11, 12, 15, 17, 19, 23, 25, 28, 30, 31, 34, 35, 36, 37, 40, 41, 42, 44, 45, 46, 47, 49, 50, 51, 52, 55, 59, 61, 62, 63, 64, 65, 66, 67, 68, 69, 71, 72, 73], "earlier": [0, 1, 2, 42], "easi": [1, 21, 62, 70], "easier": 21, "easili": 33, "easy_word": 21, "eat": 34, "echo": 31, "econom": 37, "edg": [29, 59], "edu": [1, 12, 16, 17, 70], "effect": [1, 41], "effici": 1, "effort": 55, "either": [20, 23, 52, 55], "elaps": [23, 58], "element": [1, 6], "ellips": [22, 48, 64], "els": [1, 22, 47, 64], "embed": [8, 31, 34, 35, 36, 45, 46, 65, 66, 67, 69], "emili": [30, 35, 45, 46, 47, 59, 62], "emoji": [22, 48, 64], "emot": [1, 61], "emoticon": 48, "emphas": [22, 48, 64], "emphasi": 48, "empirica": [1, 2, 71], "emploi": 45, "empti": [0, 2, 13, 67], "en": [1, 21, 24, 61, 70], "en_core_web_sm": [1, 61], "enabl": 71, "enclos": 22, "encod": [1, 8], "encompass": 62, "encount": [1, 34, 35, 61], "encourag": 64, "end": [0, 1, 15, 20, 23, 34, 54, 62, 63], "engag": 43, "engin": 2, "english": [34, 42], "enjoi": 62, "ensur": [0, 1, 40, 49, 61, 63, 67, 71], "entir": [1, 12, 28, 31, 36, 40, 41, 52, 59, 62, 73], "entiti": [0, 1, 2, 15, 39, 64], "entityrecogn": 47, "entri": [1, 28, 61], "ep8dauru1ogvjurwdbof5h6ayfbslvughjyiv31d_as6ppbt": 5, "equal": [1, 21, 23, 34, 37, 40, 55, 59, 61, 62, 63], "equival": [0, 1, 41, 55, 61], "eric": 62, "error": [1, 16, 61], "especi": [41, 62], "essenti": [51, 71], "establish": 31, "estim": 31, "et": [1, 5, 16, 18, 21, 24, 30, 31, 32, 33, 34, 35, 36, 38, 42, 43, 44, 49, 50, 52, 53, 54, 56, 57, 58, 59, 60, 64], "etc": [10, 15, 16, 17, 42], "evalu": [5, 47, 50], "evan": 62, "even": [0, 1, 2, 34, 37, 42, 62, 63, 67], "evenli": [34, 55], "event": [1, 34, 55, 61], "ever": 62, "everi": [1, 4, 13, 31, 34, 35, 36, 61, 62], "everybodi": [31, 36], "everyon": [31, 36, 47, 62], "everyth": [31, 36, 56], "everywher": [31, 36], "evolut": 35, "evolv": [35, 71], "exactli": [1, 2, 71], "examin": [40, 62, 63], "exampl": [0, 10, 11, 15, 21, 24, 29, 31, 32, 34, 37, 42, 43, 48, 50, 51, 54, 56, 59, 60, 61, 62], "example_data": 1, "exce": 15, "exchang": [12, 35, 39, 40, 45, 55, 64], "exclud": [0, 41, 42], "exclus": [41, 42], "excus": 32, "exhibit": 35, "exist": [0, 1, 2, 55, 61, 62, 63, 64, 67], "expand": 49, "expect": [1, 37, 47], "expected_valu": 47, "explain": [0, 29], "explan": [29, 43], "explor": [61, 62], "express": [5, 14, 30, 31, 32, 36, 38, 42, 64], "extend": 1, "extens": [43, 44], "extent": [1, 4, 7, 12, 31, 34, 35, 37, 51, 55, 59, 61], "extern": 48, "extra": 51, "extract": [1, 17, 19, 28, 40, 50, 64], "extrem": [55, 56, 57], "face": [1, 51, 61], "facilit": [62, 71], "fact": [4, 35, 50, 54, 59], "factual": [17, 24, 50], "fail": [1, 61], "fals": [0, 1, 2, 31, 54, 61, 71], "famili": 42, "far": [34, 35, 46, 50, 62], "faster": 14, "feat_count": 19, "featuer": 2, "featur": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 63, 64, 65, 66, 67], "feature_build": [0, 1, 61], "feature_dict": [1, 61], "feature_method": [64, 65], "feature_nam": [1, 61], "featurebuild": [0, 2, 47, 69], "features_conceptu": [1, 61], "few": [48, 62], "fewer": [12, 60], "fflow": 11, "field": [13, 17], "file": [0, 2, 12, 14, 19, 61, 65, 67], "filenam": [1, 2, 19], "filenotfounderror": 67, "fill": 71, "filler": [37, 60], "filler_paus": 49, "filter": [19, 62], "final": [1, 2, 34, 42, 62], "find": [1, 19, 28, 50], "fingertip": 62, "finit": 55, "first": [0, 1, 2, 11, 12, 16, 19, 31, 34, 35, 36, 39, 40, 41, 42, 45, 46, 49, 52, 54, 59, 61, 62, 64, 70, 71], "first_person": 12, "first_person_plur": 49, "first_person_raw": [12, 16], "first_person_singl": 49, "five": 37, "fix": 52, "flag": 71, "float": [0, 2, 4, 5, 6, 8, 10, 13, 14, 16, 21, 24, 25, 28, 68], "floor": 59, "flow": [0, 1, 7, 31, 36, 39, 41, 45, 46, 61, 64], "focal": [31, 36], "focu": 41, "folder": [0, 1, 19], "follow": [1, 2, 16, 17, 29, 31, 32, 33, 41, 42, 47, 49, 50, 53, 55, 59, 60, 61, 64, 65], "for_m": 49, "for_you": 49, "forc": [0, 1, 61], "form": 1, "formal": [1, 61], "formal_titl": 49, "format": [0, 1, 8, 17, 22, 47, 48, 61, 62, 64], "former": [45, 46], "formula": [33, 42, 59, 64, 70], "fornt": 1, "forward": [0, 1, 7, 39, 41, 61, 64], "forward_flow": 35, "found": [1, 2, 5, 28, 30, 33, 61, 69], "four": [1, 8], "fourth": 33, "frac": 55, "fraction": 59, "frame": 64, "framework": [49, 50, 62], "frequenc": [28, 31, 44, 64], "frequency_dict": 28, "fridai": 34, "from": [0, 1, 2, 4, 5, 6, 8, 9, 10, 11, 12, 13, 14, 16, 19, 21, 28, 29, 31, 32, 33, 34, 35, 36, 39, 41, 42, 49, 50, 51, 53, 55, 56, 57, 58, 61, 62, 64, 65, 66, 67, 71], "full": [1, 2, 28, 37], "full_empirical_dataset": 1, "fulli": [32, 48], "functinon": 12, "function": [1, 2, 3, 4, 10, 11, 12, 13, 14, 16, 20, 21, 23, 28, 31, 39, 44, 45, 46, 50, 56, 57, 60, 61, 62, 63, 64, 65, 66, 67, 69, 70, 71, 72, 73], "function_mimic_word": 28, "function_mimicry_scor": 28, "function_word_mimicri": 28, "function_word_refer": 28, "fund": 62, "further": [1, 2, 61, 71], "futur": [23, 66], "g": [0, 1, 4, 15, 20, 29, 31, 32, 36, 37, 38, 41, 42, 47, 48, 52, 54, 59, 61, 63, 65, 66, 71], "game": [1, 2, 59, 71], "gaug": [33, 52], "gener": [0, 2, 9, 11, 12, 16, 21, 31, 34, 35, 36, 40, 42, 45, 46, 49, 51, 59, 67, 69, 71, 72], "generaliz": 23, "generate_bert": 67, "generate_certainty_pkl": 67, "generate_lexicon_pkl": 67, "generate_vect": 67, "gensim": 40, "get": [16, 20, 21, 28, 30, 31, 36, 49, 66, 67], "get_all_dd_featur": 11, "get_averag": 72, "get_centroid": 66, "get_certainti": 5, "get_certainty_scor": 64, "get_content_words_in_messag": 28, "get_conversation_level_aggreg": 65, "get_cosine_similar": 6, "get_dale_chall_easy_word": [21, 70], "get_dale_chall_score_and_classf": 64, "get_dd": 6, "get_dd_featur": 8, "get_dep_pair": [19, 49], "get_dep_pairs_noneg": [19, 49], "get_discursive_diversity_featur": 65, "get_first_pct_of_chat": 2, "get_first_person_word": [12, 70], "get_forward_flow": [7, 64], "get_function_word": 70, "get_function_words_in_messag": 28, "get_gini": 68, "get_gini_featur": 65, "get_info_divers": 13, "get_info_exchange_wordcount": 12, "get_liwc_count": 14, "get_max": 72, "get_mimicry_bert": 28, "get_min": 72, "get_moving_mimicri": 28, "get_named_ent": 64, "get_nan_vector": [27, 67], "get_polarity_scor": 24, "get_politeness_strategi": 17, "get_politeness_v2": 18, "get_proportion_first_pronoun": 16, "get_question_word": 70, "get_reddit_featur": 64, "get_senti": 67, "get_stdev": 72, "get_subjectivity_scor": 24, "get_sum": 72, "get_team_bursti": 4, "get_temporal_featur": [4, 64], "get_time_diff": 23, "get_time_diff_startend": 23, "get_turn": 25, "get_turn_id": 71, "get_turn_taking_featur": 65, "get_unique_pairwise_combo": 6, "get_user_average_datafram": 72, "get_user_level_aggreg": 65, "get_user_level_averaged_featur": 66, "get_user_level_summary_statistics_featur": 66, "get_user_level_summed_featur": 66, "get_user_network": [11, 66], "get_user_sum_datafram": 72, "get_variance_in_dd": 26, "get_within_person_disc_rang": 27, "get_word_ttr": 16, "get_zscore_across_all_chat": 73, "get_zscore_across_all_convers": 73, "gina": 62, "gini": [39, 62, 65, 68], "gini_coeffici": [11, 69], "github": [0, 1, 2, 18, 71], "give": [0, 1, 29, 37], "give_ag": 49, "given": [5, 6, 13, 14, 28, 30, 31, 33, 34, 35, 36, 40, 41, 55, 59, 66, 67, 71], "go": [1, 34, 35, 45, 46, 50, 62], "goal": 62, "good": [50, 56, 62], "goodby": 49, "googl": [0, 1], "got": [31, 36], "gotta": [31, 36], "grade": 33, "grader": 21, "grai": 35, "grammat": 36, "granularli": 35, "grate": 62, "gratitud": [17, 49, 50], "great": [47, 50, 51, 56, 59, 60, 62], "greater": 55, "greet": 50, "groceri": 41, "group": [0, 1, 2, 4, 13, 29, 33, 34, 41, 52, 59, 62, 68, 71, 72], "grouping_kei": [0, 1, 2, 71], "gt": 22, "guess": 10, "gun": 1, "gy": 15, "gym": 34, "ha": [0, 1, 2, 32, 34, 35, 37, 42, 43, 46, 52, 54, 55, 56, 59, 61, 62, 63, 71], "had": [1, 31, 36, 54, 61], "hadn": [31, 36], "handl": [19, 29, 71], "happen": [1, 2, 55, 62, 63], "happi": 42, "harder": 21, "hashedg": [17, 50], "hasn": [31, 36], "hasneg": 50, "hasposit": 50, "hate": 31, "have": [0, 1, 2, 10, 12, 16, 31, 34, 36, 37, 40, 41, 42, 45, 46, 50, 54, 59, 60, 61, 62, 71], "haven": [31, 36], "he": [1, 31, 36], "header": 18, "hear": 32, "heart": [61, 62], "heat": 1, "heavi": 62, "hedg": [11, 30, 39, 49, 50, 64], "hei": [1, 35, 45, 46, 50], "helena": [47, 62], "hello": [0, 43, 49], "help": [0, 31, 34, 36, 43, 45, 46, 52, 58, 69], "helper": [23, 67], "her": [30, 31, 36], "here": [1, 29, 31, 34, 41, 42, 47, 61, 62, 66], "herself": [31, 36], "hesit": [60, 64], "hi": [31, 35, 36, 43, 45, 46], "hierach": 71, "hierarch": 71, "high": [0, 1, 2, 61, 62, 71], "higher": [21, 31, 34, 36, 40, 41, 42, 44, 45, 46, 55, 60], "highest": 71, "highlight": 1, "him": [31, 36], "himself": [31, 36], "hmm": [31, 36], "hoc": 62, "hold": 31, "hole": 62, "home": 42, "homework": 34, "homonym": 31, "hood": 1, "hope": 35, "host": [45, 46], "hour": 48, "how": [1, 5, 28, 29, 30, 31, 34, 35, 36, 39, 43, 45, 51, 52, 54, 56, 62], "howev": [0, 1, 3, 35, 40, 42, 44, 54, 56, 61, 62], "howitwork": 1, "html": [1, 2, 15, 17, 24, 61], "http": [1, 2, 4, 5, 6, 12, 13, 15, 16, 17, 18, 21, 24, 41, 45, 46, 47, 61, 64, 68, 70, 71], "hu": [1, 42, 62], "hug": [1, 51, 61], "huggingfac": 1, "huh": [31, 32, 36], "human": [37, 50, 62], "hyperlink": 48, "hyphen": [1, 61], "hypothet": 42, "i": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 19, 20, 21, 22, 23, 24, 25, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 71, 73], "iby1": 5, "id": [2, 4, 7, 23, 28, 62, 66, 68, 71, 72, 73], "idea": [12, 35, 40, 47, 51], "ident": [34, 35], "identif": 1, "identifi": [0, 1, 2, 4, 8, 9, 15, 23, 25, 30, 31, 41, 47, 50, 52, 61, 63, 64, 71, 72], "identiif": [13, 71], "ignor": [1, 32], "illustr": [1, 41, 48, 62], "imagin": 1, "immedi": [31, 35, 64], "impact": [1, 60], "impersonal_pronoun": 49, "implement": 64, "impli": 37, "import": [31, 32, 36, 44, 45, 62, 69], "incent": 13, "includ": [0, 1, 2, 10, 17, 22, 31, 32, 35, 36, 42, 45, 46, 51, 52, 56, 61, 62, 66, 71], "inclus": [13, 71], "incongru": [8, 34], "incorpor": [1, 42, 45, 46], "increas": [1, 42, 62], "increment": 71, "independ": 1, "index": [1, 2, 4, 13, 25, 37, 39, 55, 61, 65], "indic": [1, 2, 16, 21, 22, 30, 32, 34, 35, 36, 40, 41, 43, 44, 48, 49, 50, 52, 55, 60, 63, 71], "indirect": 50, "indirect_btw": 50, "indirect_greet": 50, "indirectli": 69, "individu": [0, 1, 5, 11, 31, 34, 37, 45, 50, 59, 60, 62, 72], "inequ": 37, "infer": [1, 51, 67], "influenc": 1, "info": [13, 18, 64], "info_divers": 13, "info_exchang": 64, "info_exchange_wordcount": [41, 64], "info_exchange_zscor": 11, "inform": [6, 11, 12, 13, 24, 32, 34, 39, 48, 62, 64, 65], "informal_titl": 49, "information_divers": 11, "initi": [2, 62, 63, 64, 65, 66], "input": [0, 2, 4, 6, 12, 13, 14, 15, 16, 19, 20, 22, 28, 50, 55, 60, 62, 63, 64, 65, 66, 67, 71, 72], "input_column": [65, 66], "input_data": [25, 68, 72], "input_df": [1, 2, 61, 71], "inquiri": [30, 39, 52], "insid": 1, "insight": 1, "inspir": 15, "instal": [1, 61, 62], "instanc": [1, 22, 50, 59, 66], "instanti": 2, "insteac": 1, "instead": [1, 2, 62], "instruct": [1, 61], "int": [2, 3, 10, 13, 15, 16, 19, 20, 22, 28, 63, 64, 67], "intact": 71, "integ": [0, 13, 40, 47], "intend": 59, "interact": [1, 11, 43, 44, 62, 69], "interconnect": 62, "interest": [1, 61, 62], "interfac": 62, "intermedi": [59, 64], "intern": 29, "interpret": [0, 23], "interrupt": 59, "interv": [58, 65], "introduc": 62, "introduct": [11, 61], "invalid": 67, "invers": 64, "involv": [41, 62, 65], "io": [1, 24, 47, 61], "ipynb": [0, 1], "is_hedged_sentence_1": 10, "isn": [1, 31, 36], "issu": [1, 31, 36, 37, 42, 61], "ital": 64, "italic": 22, "item": [0, 71], "its": [0, 2, 15, 31, 35, 36, 40, 41, 47, 54, 55, 64, 69], "itself": [23, 31, 36, 44], "john": 1, "jonson": 62, "journal": [5, 64], "json": [1, 61], "jurafski": 70, "juri": 1, "juries_df": 1, "jury_conversations_with_outcome_var": 1, "jury_feature_build": 1, "jury_output": 1, "jury_output_chat_level": [1, 61], "jury_output_turn_level": 1, "just": [1, 2, 31, 36, 46, 50, 59, 61, 62], "katharina": 34, "keep": [1, 71], "kei": [1, 2, 4, 19, 28, 30, 54, 61, 71], "keyerror": 71, "keyword": [19, 49], "kind": [10, 62], "kitchen": 42, "knob": 0, "know": [1, 30], "knowledg": 29, "known": [1, 32, 61], "kumar": 62, "kw": 19, "lab": [1, 2, 62, 71], "label": [1, 15, 21, 51], "lack": [31, 38, 45, 46], "languag": [15, 31, 34, 42, 50, 62], "larg": [31, 69], "larger": [0, 31, 61], "last": [1, 31], "late": 32, "later": [0, 1, 2, 42, 61], "latest": [1, 61], "latter": [31, 36], "lda": [13, 40], "learn": [1, 61, 62], "least": [10, 32, 42, 63, 67], "led": 62, "legal": 49, "lemmat": [13, 40], "len": 28, "length": [35, 39, 41, 42, 44], "less": [13, 32, 50, 52, 55, 62, 63], "let": [41, 49, 53], "let_me_know": 49, "letter": [49, 71], "level": [0, 1, 2, 3, 4, 6, 7, 8, 9, 12, 13, 14, 16, 23, 61, 64, 65, 66, 71, 72], "lexic": [10, 12, 14, 16, 31, 32, 36, 42, 60, 62, 64], "lexical_featur": [14, 64], "lexical_features_v2": [10, 11], "lexicon": [5, 10, 14, 30, 39, 50, 52, 67, 69], "lexicons_dict": 67, "librari": [34, 51, 56, 57], "lift": 62, "light": 61, "like": [1, 22, 31, 34, 36, 41, 50, 61, 62], "limiat": 32, "limit": [11, 32, 37, 42, 54], "line": [0, 1, 19, 22, 48, 61, 62, 64], "linear": 64, "linguist": [18, 19, 30, 39, 50, 52], "link": [22, 29, 48, 50, 64], "list": [1, 2, 6, 7, 10, 11, 12, 13, 15, 19, 20, 21, 22, 28, 31, 33, 36, 37, 42, 48, 49, 50, 53, 54, 61, 64, 65, 66, 67, 68, 70, 71], "literatur": 62, "littl": 38, "littlehors": 1, "liu": [42, 52], "live": [1, 54], "liwc": [14, 30, 39, 51, 52, 56, 62], "liwc_featur": [10, 14], "lix": 34, "ll": [1, 31, 36, 61], "load": [19, 69], "load_saved_data": 19, "load_to_dict": 19, "load_to_list": 19, "loc": 15, "local": [1, 51, 61], "locat": [1, 62], "long": [4, 42], "longer": [30, 41, 43, 48, 61, 62], "look": [2, 34, 61, 65, 66], "loos": 36, "lot": [31, 36], "loud": 60, "love": [31, 56], "low": [1, 2, 29, 55, 60, 71], "lower": [21, 31, 33, 36, 41, 42, 44, 55, 60], "lowercas": [2, 13, 40, 48, 49, 71], "lowest": 71, "lpearl": 16, "lst": 6, "m": [0, 2, 23, 30, 31, 36], "made": [1, 23, 35, 59, 61, 62], "magnitud": 55, "mai": [1, 2, 11, 28, 31, 32, 35, 36, 37, 41, 42, 43, 44, 54, 61, 62, 71], "main": [1, 2, 5, 62, 64, 65, 66], "make": [1, 5, 31, 34, 55, 56, 62, 66, 69, 71], "man": 62, "mani": [1, 4, 11, 32, 37, 41, 60, 62, 66], "manner": [55, 62], "manual": [1, 61], "map": [13, 34], "mark": [19, 20, 22, 43, 54, 64, 71], "marker": [18, 32, 39, 42, 50, 51, 52, 54, 56], "marlow": 44, "matarazzo": 62, "match": [1, 5, 16, 19, 30], "math": 34, "matter": [28, 47], "max": 66, "max_num_chunk": 63, "maxim": [34, 35, 37], "maximum": [63, 65, 72], "mayb": [38, 47], "mcfarland": 70, "me": [31, 32, 36, 41, 50, 53], "mean": [0, 1, 4, 6, 11, 13, 21, 29, 31, 34, 36, 40, 41, 42, 47, 55, 56, 58, 61, 62, 65, 66, 73], "meaning": [31, 41, 55], "meaningless": 41, "meant": 39, "measur": [0, 7, 12, 13, 20, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 42, 44, 45, 46, 51, 52, 54, 55, 56, 57, 58, 59, 60, 62, 64, 68], "mechan": 32, "medium": 21, "meet": 48, "member": [13, 34, 37, 55], "merg": [2, 8, 65, 66], "merge_conv_data_with_origin": 2, "messag": [0, 1, 2, 3, 4, 5, 8, 11, 12, 13, 14, 15, 16, 17, 20, 21, 22, 23, 24, 28, 30, 31, 34, 35, 36, 37, 39, 41, 45, 46, 47, 48, 50, 51, 52, 55, 56, 57, 58, 61, 62, 63, 64, 65, 66, 67, 71, 73], "messaga": 61, "message_col": [0, 1, 2, 12, 13, 14, 61, 64, 65, 67, 71], "message_embed": [6, 7, 8], "message_lower_with_punc": 71, "metadata": [0, 1], "method": [5, 31, 41, 50, 62], "metric": [0, 1, 2, 8, 30, 34, 35, 46, 47, 48, 55, 66], "michael": 1, "mid": [1, 2, 71], "middl": [21, 34, 63], "might": [0, 1, 29, 43, 48, 53], "mikeyeoman": [18, 64], "mileston": 34, "millisecond": [0, 2], "mimic": [28, 31, 36, 45], "mimic_word": 28, "mimick": [28, 31, 64], "mimicri": [0, 1, 28, 31, 35, 36, 39, 61, 64], "mimicry_bert": [45, 46], "mind": [1, 35, 50], "mine": [31, 36, 53, 59], "minim": [0, 41, 60], "minimum": [65, 72], "minu": [12, 41, 64], "minut": [55, 58], "mirror": 1, "miss": [1, 32, 61, 71], "mitig": [31, 36], "mizil": 50, "mm": [31, 36], "mnsc": 6, "modal": 50, "mode": 60, "model": [1, 13, 15, 31, 34, 35, 36, 40, 45, 46, 47, 51, 62, 67], "modif": 35, "modifi": [1, 9, 19, 32, 64], "modul": [0, 1, 11, 34, 49, 61, 69], "monologu": 59, "more": [0, 1, 2, 11, 12, 22, 23, 24, 28, 31, 32, 34, 36, 37, 40, 41, 42, 43, 44, 45, 46, 50, 52, 55, 59, 61, 62, 71], "morn": 1, "most": [24, 31, 55, 62, 69], "motiv": 61, "move": [0, 1, 28, 31, 36, 39, 45, 59, 61], "movi": 31, "much": [1, 28, 31, 34, 35, 36, 45, 62], "multi": [1, 2, 71], "multidimension": [45, 46], "multipl": [0, 1, 2, 19, 62, 71], "must": [1, 6, 62, 71], "my": [30, 31, 35, 36, 45, 46, 50, 53], "my_chat_featur": 1, "my_feature_build": 61, "my_fil": 1, "my_output": 61, "my_output_chat_level": 61, "my_output_conv_level": 61, "my_output_user_level": 61, "my_pandas_datafram": 61, "myself": [31, 36, 53], "n": [0, 2, 35, 45, 46, 47, 57, 59, 60], "n_chat": 59, "na": [5, 33, 43, 44, 48, 49, 50, 53, 58], "naiv": [2, 20, 32, 34, 38, 39, 53, 56, 57, 64], "name": [0, 2, 4, 7, 8, 9, 12, 13, 14, 15, 17, 19, 23, 25, 28, 30, 32, 35, 39, 45, 46, 50, 51, 56, 63, 64, 66, 67, 68, 71, 72, 73], "name_to_train": 47, "named_ent": [15, 47], "named_entity_recognition_featur": 11, "nan": [0, 34, 67], "nate": [35, 45, 46], "nathaniel": [35, 45, 46], "nativ": 50, "natur": [43, 55], "ndarrai": 68, "nearest": [13, 40], "nearli": 62, "necessari": [63, 67], "need": [0, 1, 2, 21, 62, 66, 67], "need_sent": 67, "need_senti": 67, "neg": [1, 24, 29, 31, 34, 35, 36, 42, 50, 51, 52, 54, 56, 61, 62, 67], "negat": [19, 49], "negative_bert": [1, 51, 61], "negative_emot": [49, 51, 52, 56], "negoti": 62, "neighborhood": 54, "neither": 30, "ner": 15, "ner_cutoff": [0, 1, 2, 47, 64], "ner_train": 64, "ner_training_df": [0, 1, 2, 47, 64], "nest": [0, 1, 2, 22, 71], "net": [45, 46], "network": 11, "neutral": [1, 5, 24, 30, 51, 55, 61, 67], "neutral_bert": [1, 51, 61], "never": 1, "new": [1, 4, 13, 34, 61, 64, 65, 66, 72], "new_column_nam": 72, "next": [1, 32, 47, 58], "nice": [1, 50, 54, 61], "nicknam": 1, "niculescu": 50, "night": 31, "nikhil": [59, 62], "nltk": [1, 42, 61], "nobodi": [31, 36], "nois": 32, "non": [1, 2, 28, 31, 37, 48, 61, 62, 71], "none": [1, 2, 19, 23, 37, 55, 61, 64, 65, 66, 67], "nor": 30, "normal": [19, 28, 31], "notabl": 62, "note": [0, 1, 2, 12, 16, 20, 42, 61, 71], "notebook": [0, 1], "noth": [31, 36, 56], "noun": 1, "novel": [45, 46], "now": [0, 1, 2], "nowher": [31, 36], "np": [67, 68], "ntri": 32, "null": 34, "num": 48, "num_char": 65, "num_chunk": [27, 63], "num_hedge_word": 10, "num_messag": 65, "num_named_ent": [15, 47], "num_row": 63, "num_top": 13, "num_word": [12, 16, 65], "number": [0, 3, 11, 12, 13, 14, 15, 16, 19, 20, 21, 22, 23, 25, 28, 31, 32, 34, 36, 37, 40, 41, 42, 43, 44, 47, 48, 49, 54, 56, 58, 59, 60, 62, 63, 64, 66, 69, 71, 72], "numer": [0, 1, 2, 13, 33, 68, 72, 73], "numpi": [1, 61, 68], "o": 35, "object": [1, 2, 19, 44, 50, 57, 58, 61, 62, 64, 65, 66], "obtain": [1, 13, 17, 23, 24, 34, 61], "occur": [0, 4, 31, 42, 71], "occurr": 19, "off": [1, 31, 36], "offer": 0, "offici": 61, "often": [28, 36, 47, 48, 62], "oh": [31, 36, 48], "okai": [31, 36], "older": [1, 61], "on_column": [18, 23, 28, 68, 72, 73], "onc": [1, 2, 11, 58, 61, 62], "one": [0, 1, 2, 4, 10, 12, 19, 23, 25, 28, 29, 31, 32, 36, 37, 47, 51, 56, 59, 61, 62, 67, 68, 71, 73], "ones": [31, 36], "onli": [0, 1, 2, 5, 11, 23, 29, 31, 32, 34, 36, 37, 45, 53, 58, 59, 61, 62, 71], "onlin": [1, 32, 39, 64], "onward": 0, "open": [0, 62, 66], "operation": [39, 50, 59], "opinion": [24, 31], "oppos": [2, 31, 34, 35, 55], "opposit": 34, "option": [1, 2, 37, 62, 63, 67, 71], "order": [0, 1, 35, 37, 42, 71], "org": [2, 6, 15, 21, 24, 41, 70], "organ": 1, "origin": [1, 2, 5, 12, 21, 31, 32, 35, 36, 37, 45, 46, 49, 59], "orthogon": 34, "other": [1, 2, 9, 11, 28, 29, 30, 31, 32, 34, 35, 36, 37, 39, 40, 45, 46, 48, 51, 52, 54, 56, 58, 59, 61, 62, 64, 66, 71], "other_lexical_featur": [11, 64], "otherwis": [2, 10, 21, 23, 32, 38, 63, 67], "our": [0, 1, 2, 11, 13, 29, 31, 32, 36, 37, 39, 53, 59, 61, 71], "ourselv": 53, "out": [1, 2, 16, 19, 31, 36, 55, 60, 62], "outcom": [1, 44, 62], "output": [0, 2, 10, 17, 19, 40, 61, 62, 64, 67], "output_file_bas": [0, 1, 2, 61], "output_file_path_chat_level": [1, 2], "output_file_path_conv_level": [1, 2], "output_file_path_user_level": [1, 2], "output_path": 67, "outsid": [1, 2, 12], "over": [1, 16, 29, 31, 34, 35, 36, 37, 53, 55, 60, 62, 71], "overal": [30, 31, 34, 36, 45, 46], "overrid": [0, 1, 2], "overview": [0, 1, 61, 62], "overwritten": 1, "own": [0, 1, 9, 35, 62], "p": 55, "pacakg": 24, "pace": [43, 62], "packag": [17, 18, 40, 62], "pad": 19, "page": [1, 11, 29, 39, 61, 62, 69], "pair": [6, 19, 34, 49, 71], "pairwis": [6, 34], "panda": [0, 1, 2, 12, 14, 16, 23, 47, 64, 65, 66, 71, 72, 73], "paper": [4, 5, 12, 18, 29, 40, 50, 64], "paragraph": 22, "param": 71, "paramet": [2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 28, 47, 61, 62, 63, 64, 65, 66, 67, 68, 71, 72, 73], "paramt": 1, "pardon": 32, "parenthes": [22, 48, 64], "parenthet": [22, 48], "pars": [16, 50, 60], "part": [1, 10, 13, 29, 36, 42, 52, 71], "particip": [1, 9, 37, 62], "particl": [31, 36], "particular": [11, 31, 32, 34, 41, 45, 47, 51, 59, 62], "particularli": 42, "partner": 32, "pass": [1, 13, 21, 47, 71], "path": [1, 2, 19, 61, 67], "path_in": 19, "pattern": [4, 11, 19, 55, 62, 67], "paus": 4, "pd": [1, 2, 4, 6, 7, 8, 9, 12, 13, 14, 15, 16, 18, 19, 23, 25, 63, 64, 65, 66, 67, 68, 71], "pdf": [5, 12, 13, 16, 18, 21, 24, 64, 70], "penalti": 1, "pennebak": [12, 37, 41, 42, 52], "pennyslvania": 62, "peopl": [1, 32, 59, 62], "per": [1, 6, 9, 19, 42, 63, 66, 72], "percentag": [2, 21], "perfect": [37, 59], "perform": [0, 1, 2, 16, 50], "perhap": 1, "period": [4, 34, 55], "person": [1, 8, 12, 15, 16, 32, 34, 39, 41, 42, 50, 59, 62, 64, 70], "perspect": 1, "petrocelli": 5, "phrase": [19, 30, 38, 54], "phrase_split": 19, "pickl": [19, 67], "piec": [36, 42, 59, 63], "pl": 50, "place": [55, 61, 62], "plan": [34, 35, 45, 46], "player": 59, "pleas": [0, 1, 38, 49, 50, 61, 62], "please_start": 50, "point": [22, 24, 34, 35, 45, 46, 48, 52, 64, 66], "poisson": 55, "polar": [24, 39, 51, 52, 64], "polit": [1, 17, 18, 30, 32, 38, 39, 42, 51, 52, 54, 56, 64], "politeness_featur": 11, "politeness_v2": 11, "politeness_v2_help": 11, "politenessstrategi": [17, 50], "portion": 0, "posit": [0, 1, 11, 15, 24, 29, 31, 39, 42, 50, 51, 54, 56, 61, 62, 64, 67], "positive_affect_lexical_per_100": [51, 52, 56], "positive_bert": [1, 51, 61], "positive_emot": [49, 51, 52, 56], "positivity_bert": [1, 61], "positivity_zscor": 64, "positivity_zscore_chat": 52, "positivity_zscore_convers": 52, "possess": 31, "possibl": [1, 34, 62, 66], "possibli": [38, 62], "practic": [34, 35], "pre": [1, 4, 21, 37, 49, 64], "preced": [31, 35, 71], "precend": 35, "precis": 47, "precomput": 51, "predefin": 19, "predetermin": [31, 36], "predict": [2, 47, 51, 64], "prefer": [0, 1], "preload_word_list": 69, "prep_simpl": 19, "prep_whol": 19, "preposit": [31, 36], "preproces": 48, "preprocess": [0, 1, 2, 13, 19, 40, 43, 49, 51, 61, 69], "preprocess_chat_data": 2, "preprocess_conversation_column": 71, "preprocess_naive_turn": 71, "preprocess_text": 71, "preprocess_text_lowercase_but_retain_punctu": 71, "presenc": [2, 32, 67], "present": [1, 2, 14, 30, 31, 38, 42, 55, 62, 71], "prespecifi": 19, "prevent": 51, "previou": [1, 7, 28, 31, 36, 45, 46, 58, 64, 71], "primari": 34, "print": 2, "prior": [2, 64, 71], "priya": [47, 62], "probabl": [15, 47], "problem": 62, "procedur": 62, "proceed": 46, "process": [0, 1, 2, 4, 10, 21, 37, 55, 62, 64, 65, 67, 69, 71], "prodi": 15, "produc": [2, 34], "product": 15, "professor": 62, "progress": [1, 2], "project": [54, 62], "pronoun": [12, 16, 31, 36, 39, 41, 42, 64, 70], "proper": 1, "properti": [1, 61], "proport": [16, 39, 42, 64], "propos": 37, "provid": [0, 1, 2, 15, 29, 30, 33, 36, 39, 44, 47, 54, 62], "proxi": 42, "pseudonym": 1, "psycholog": 42, "pub": 70, "publish": [5, 30, 64], "pubsonlin": 6, "punctuat": [0, 2, 16, 19, 20, 21, 28, 43, 54, 60, 71], "punctuation_seper": 19, "puncut": 48, "pure": [24, 36], "purpos": 1, "put": [34, 50, 62, 66], "py": [0, 1, 14, 49, 61], "pydata": 2, "pypi": [1, 61], "python": [1, 32, 41, 56, 57, 61, 62, 68], "qtd": 62, "qualiti": 41, "quantifi": [31, 36, 62], "quantiti": [37, 39, 41, 47], "quartil": 50, "question": [16, 19, 20, 29, 32, 39, 49, 50, 64, 66, 68, 70], "question_num": 11, "question_word": 20, "quick": [1, 43], "quickli": 0, "quit": 40, "quot": [22, 48, 64], "quotat": [22, 48], "rabbit": 62, "rain": 41, "rais": [67, 71], "random": 55, "rang": [5, 8, 24, 30, 33, 34, 35, 40, 51, 53, 55, 56, 57], "ranganath": [16, 31, 32, 36, 38, 43, 54, 70], "ranganath2013": 70, "ranganathetal2013_detectingflirt": 16, "rapid": [1, 4], "rare": [34, 35], "rate": [42, 51], "rather": [1, 31, 34, 35, 36, 37, 45, 46, 63], "ratio": [16, 39, 64], "raw": [0, 12, 16, 21, 31, 33, 42, 50, 64], "re": [1, 31, 36, 42, 50, 61], "read": [0, 1, 2, 16, 21, 29, 33, 61, 62, 64, 65, 66, 67], "read_csv": 1, "read_in_lexicon": 67, "readabl": [11, 33, 64, 70], "reader": 33, "readi": 1, "readili": 62, "readthedoc": [1, 24, 61], "real": [1, 55], "realit": 13, "realli": [31, 36, 50], "reason": [31, 36, 45, 46, 49], "reassur": 49, "recal": 47, "recept": [18, 32, 39, 42, 50, 51, 52, 54, 56, 62, 64], "recogn": [1, 43, 47], "recognit": [0, 1, 2, 39, 64], "recommend": [0, 42, 62], "reddit": [48, 64], "reddit_tag": 11, "redditus": 48, "reduc": 63, "reduce_chunk": 63, "redund": [42, 62], "refer": [0, 1, 2, 11, 22, 24, 28, 31, 42, 48, 52, 61, 62, 64, 70], "reflect": [37, 43], "regardless": 1, "regener": [0, 2, 51, 67], "regenerate_vector": [0, 1, 2, 67], "regex": [14, 16, 49], "regist": 37, "regress": 1, "regular": [5, 14, 30, 32, 42, 55, 58], "reichel": [53, 58, 60], "reidl": [4, 13], "reinvent": 62, "rel": [41, 51, 52, 55, 60, 64], "relat": [1, 61, 62, 64], "relationship": 36, "relev": [1, 29, 42, 44, 49, 51, 56, 61, 64, 65], "reli": [31, 34, 35, 36, 69], "reliabl": [33, 42], "remain": [1, 30, 71], "rememb": 1, "remov": [0, 2, 9, 13, 19, 28, 40, 43, 48, 49, 50, 71], "remove_active_us": 9, "renam": 1, "repair": [16, 39], "repeat": [60, 71], "repetit": 60, "replac": 19, "report": [1, 61], "repres": [2, 4, 6, 7, 11, 13, 23, 31, 34, 36, 42, 45, 46, 66, 67, 68, 71, 72, 73], "represent": [34, 38, 67], "reproduc": [36, 62], "republican": 1, "request": [32, 50, 51], "requir": [0, 1, 20, 21, 31, 55, 61, 62, 64, 65, 66, 67], "research": [1, 2, 62], "reserv": 0, "resolv": 62, "resourc": [1, 39, 48, 61, 62], "respect": [1, 2, 12, 31, 36, 37, 69], "respons": [22, 48, 55, 58, 64], "restaur": [34, 56], "restor": 0, "restrict": 71, "result": [40, 55, 65, 72], "retain": [2, 16, 20, 21, 60, 71], "retriev": 50, "retunr": 3, "return": [2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 28, 30, 32, 43, 49, 50, 51, 55, 62, 63, 64, 65, 66, 67, 68, 70, 71, 72, 73], "reveal": 62, "revert": 50, "review": 62, "rewrit": 50, "rich": 62, "riedl": [13, 40, 55], "right": [31, 36, 61, 62], "roberta": [1, 39, 42, 52, 56, 61, 64, 67], "robust": 13, "rocklag": [5, 30, 64], "room": 59, "root": [13, 40], "rough": [12, 54], "roughli": 31, "round": [13, 40, 59, 71], "round_num": 1, "row": [0, 1, 2, 9, 13, 25, 37, 40, 59, 63, 68, 71, 72, 73], "rowbotham": 62, "rucker": 5, "rule": [1, 69], "run": [0, 10, 12, 16, 35, 46, 47, 48, 51, 61, 69], "runtim": [1, 35], "sagepub": [5, 64], "sai": [1, 32, 50, 59], "said": [1, 36, 62], "same": [0, 1, 2, 31, 34, 37, 45, 48, 52, 59, 60, 62, 71], "sampl": [61, 62], "sarcast": 48, "save": [0, 1, 2, 19, 64, 67], "save_featur": 2, "sbert": [1, 28, 31, 34, 35, 36, 45, 46, 64, 65, 67], "scale": [42, 51], "schema": 1, "scheme": 0, "school": [21, 62], "scienc": [29, 39, 62], "scientist": [61, 62], "score": [1, 4, 5, 11, 12, 13, 15, 21, 24, 28, 29, 30, 31, 34, 35, 36, 38, 39, 40, 45, 46, 47, 51, 53, 56, 57, 61, 64, 65, 67, 73], "script": [1, 61], "sea": 1, "seamless": 62, "search": [19, 61], "second": [0, 1, 4, 34, 42, 58, 59], "second_person": 49, "secr": [18, 49, 64], "section": [1, 29, 61], "see": [0, 1, 2, 30, 34, 38, 41, 45, 46, 47, 55, 62, 71], "seek": [5, 62], "segment": [0, 19], "select": [2, 4, 23, 28, 36, 45, 66, 67, 68, 71, 72, 73], "self": [1, 2, 61], "semant": [31, 34, 35, 41], "semantic_group": [1, 61], "send": [1, 37, 55], "sens": [5, 31, 54, 66], "sent": [1, 37, 64], "sentenc": [0, 1, 10, 15, 19, 20, 21, 33, 34, 35, 36, 42, 45, 46, 47, 48, 54, 56, 61, 67], "sentence_pad": 19, "sentence_split": 19, "sentence_to_train": 47, "sentencis": 19, "sentiment": [0, 1, 24, 31, 39, 42, 52, 56, 61, 62, 64, 67], "separ": [1, 2, 19, 34, 51], "sepcifi": 1, "septemb": 40, "sequenc": [1, 59], "sequenti": 1, "seri": [12, 16, 23, 28, 42, 71, 73], "serv": 12, "set": [0, 1, 2, 13, 23, 34, 48, 59], "set_self_conv_data": 2, "sever": [1, 30, 41, 42, 48, 51, 56, 61], "shall": 54, "share": [31, 36, 37], "she": [30, 31, 36], "shift": 34, "shop": 62, "short": [55, 58], "shorter": [13, 40, 41, 42, 43], "should": [0, 1, 2, 4, 14, 23, 28, 29, 31, 36, 47, 48, 54, 61, 62, 65, 66, 67, 68, 69, 71, 72, 73], "shouldn": [31, 36], "show": [1, 37, 61], "showeth": 62, "shruti": [35, 45, 46, 47, 62], "side": 31, "signal": [45, 55], "signifi": 42, "signific": [1, 61], "silent": 37, "similar": [1, 6, 7, 13, 28, 29, 31, 34, 35, 36, 40, 45, 46, 49, 62, 65], "similarli": [1, 35], "simpl": [0, 1, 16, 19, 42, 61, 62], "simpli": [1, 5, 11, 28, 56, 62], "simplifi": 1, "simplist": 41, "sinc": [1, 32, 41, 71], "singh": 62, "singl": [0, 1, 2, 11, 12, 19, 23, 31, 34, 35, 36, 37, 41, 45, 46, 59, 62, 71, 72], "singular": [12, 41, 64], "site": 16, "situat": 37, "size": [1, 13, 63, 67], "skip": 1, "slightli": [32, 62, 63], "slow": 1, "small": 40, "so": [1, 2, 10, 30, 31, 36, 37, 50, 61, 62, 66], "social": [29, 39, 61, 62], "socsci": 16, "softwar": 62, "sohi": 62, "sol3": 4, "solut": 59, "solv": 62, "some": [0, 1, 11, 17, 29, 32, 34, 35, 37, 41, 61, 63], "somebodi": [31, 36], "someon": [22, 29, 31, 36, 47, 48, 61, 64], "someplac": [31, 36], "someth": 47, "sometim": 1, "somewhat": 35, "soon": 62, "sorri": [16, 32, 50], "sort": 10, "sound": [47, 51], "sourc": [4, 5, 6, 12, 13, 16, 17, 21, 34, 35, 50, 64, 68], "space": [34, 40, 71], "spaci": [1, 19, 47, 49, 50, 61], "span": 63, "spars": 32, "speak": [1, 31, 36, 37, 59, 60, 62], "speaker": [0, 1, 2, 6, 8, 9, 25, 31, 34, 35, 37, 38, 42, 45, 46, 61, 66, 71, 72], "speaker_id": [2, 61, 72], "speaker_id_col": [0, 1, 2, 6, 8, 9, 25, 26, 27, 61, 65, 66, 71, 72], "speaker_nicknam": [0, 1, 2, 6, 9, 59, 66, 71], "special": [0, 1, 2, 48, 71], "specif": [1, 2, 12, 32, 41, 48, 55, 61, 62, 69, 71], "specifi": [1, 2, 19, 47, 49, 67, 68, 71, 72, 73], "speciifc": 63, "spend": [51, 62], "spike": 55, "split": [19, 21, 43, 63], "spoke": 59, "spoken": [11, 37], "spread": 55, "squar": [13, 40], "ssrn": 4, "stabl": 40, "stack": 14, "stackoverflow": 68, "stage": [1, 2, 34, 71], "stamp": 55, "standard": [1, 4, 37, 40, 41, 49, 55, 58, 60, 65, 72, 73], "stanford": 70, "start": [15, 19, 20, 22, 23, 50], "statement": [1, 38, 42, 47, 48, 61, 62, 64], "statist": [65, 66, 68], "statologi": 41, "stem": 42, "step": [1, 4, 28, 41, 45, 46, 51], "still": [41, 45, 46], "stochast": 40, "stop": [40, 62], "stopword": [13, 19], "store": [1, 12, 16, 41, 49, 51, 61, 65, 67], "stoword": 42, "str": [2, 3, 4, 5, 7, 8, 9, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 28, 63, 64, 65, 66, 67, 68, 71, 72, 73], "str_to_vec": 67, "str_vec": 67, "straightforward": 29, "strategi": [17, 30, 32, 38, 39, 42, 49, 54, 64], "stream": 35, "strictli": 1, "string": [0, 1, 2, 4, 8, 12, 13, 14, 19, 23, 24, 50, 66, 67, 68, 71, 72, 73], "strongli": [1, 41, 61], "structur": [0, 36, 49], "student": [21, 33], "studi": [1, 34, 62], "style": [1, 31, 36, 59], "sub": [0, 1, 71], "subfold": 1, "subject": [5, 24, 28, 39, 49, 64], "subjunct": 50, "sublist": 28, "submiss": 55, "subpart": [1, 71], "subsequ": [1, 30, 51, 58], "subset": 62, "substanc": 36, "substant": 31, "substanti": 1, "substr": 30, "subtask": 1, "subtract": [41, 58], "succe": 62, "success": [0, 1, 4, 31, 36, 43, 55, 58], "suggest": [1, 13, 34, 42, 44, 50], "suit": [62, 64], "sum": [1, 28, 34, 61, 64, 65, 66, 72], "summar": [0, 1, 65, 66, 69], "summari": [65, 66, 72], "summariz": [0, 65], "summarize_featur": 69, "suppl": 6, "support": [1, 15, 61], "suppos": 1, "sure": 30, "swear": 49, "syntax": [1, 32, 61], "system": [2, 59, 64], "t": [0, 1, 2, 15, 29, 31, 36, 45, 49, 54, 61, 62, 67], "tabl": 62, "tag": 39, "take": [1, 4, 5, 9, 14, 25, 29, 31, 34, 37, 39, 42, 55, 61, 65, 67, 71], "taken": [59, 71], "talk": [1, 37, 47, 59, 62], "tandem": [1, 61], "target": 15, "task": [1, 2, 59, 71], "tausczik": [12, 37, 41, 52], "tausczikpennebaker2013": 12, "team": [0, 1, 4, 11, 12, 13, 34, 39, 40, 59, 65], "team_bursti": 4, "team_comm_tool": [1, 61], "teamcommtool": 1, "technic": [29, 39, 61, 62], "teghxgbqdhgaaaaa": 5, "tempor": [0, 2, 55, 58, 64, 71], "temporal_featur": 11, "tend": [1, 34, 60], "term": [1, 28, 59], "termin": [1, 2, 61], "terribl": 51, "test": [13, 33, 47], "text": [0, 1, 2, 3, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 24, 28, 32, 33, 36, 42, 48, 55, 62, 64, 67, 71], "text_based_featur": 64, "textblob": [24, 39, 51, 52, 64], "textblob_sentiment_analysi": 11, "than": [0, 1, 2, 11, 13, 31, 34, 35, 36, 37, 40, 41, 45, 46, 54, 60, 62, 63], "thee": 62, "thei": [0, 1, 28, 29, 31, 34, 36, 37, 39, 42, 47, 58, 59, 61, 62, 67], "them": [0, 1, 2, 19, 28, 29, 31, 36, 50, 51, 55, 59, 61, 62, 64, 65, 66, 67], "themselv": [31, 36, 60], "theoret": 35, "theori": [34, 50], "therefor": [0, 1, 11, 28, 37, 45, 59, 62, 69], "thi": [0, 1, 2, 3, 4, 6, 7, 8, 9, 10, 12, 13, 14, 16, 18, 20, 21, 23, 28, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 71, 72, 73], "thing": [48, 61], "think": [1, 38, 47], "thorough": [43, 62], "those": [1, 21, 31, 36, 61], "though": [34, 42], "thought": [1, 35, 45], "thread": [1, 61], "three": [0, 1, 2, 22, 34, 37, 40, 51, 61, 62, 69, 71], "threshold": [15, 47], "through": [1, 45, 46, 50, 61, 62], "throughout": [31, 35, 36, 40, 45, 46, 55, 63], "tht": 35, "thu": [1, 2, 34, 35, 36, 37, 46, 55, 71], "time": [0, 1, 4, 23, 34, 35, 39, 42, 48, 51, 55, 59, 61, 62, 63, 64, 65, 66, 71], "time_diff": 55, "timediff": 4, "timestamp": [0, 1, 2, 8, 23, 58, 61, 62, 63, 64, 71], "timestamp_col": [0, 1, 2, 8, 61, 63, 64, 65, 71], "timestamp_end": [1, 23, 61, 64], "timestamp_start": [1, 23, 61, 64], "timestamp_unit": [0, 2, 23, 64], "to_datetim": [0, 2], "todai": [34, 35, 41, 43, 45, 46, 47], "todo": 66, "togeth": [0, 62, 66], "token": [16, 19, 39, 49, 54, 64], "token_count": [19, 49], "too": [30, 31, 36, 62], "took": [1, 59], "tool": [1, 61, 62], "toolkit": [0, 1, 11, 42, 45, 46, 55, 62], "top": [1, 50, 59], "topic": [1, 13, 31, 34, 40, 42, 43, 65], "tormala": 5, "total": [1, 3, 12, 16, 25, 31, 34, 36, 37, 41, 44, 53, 59, 60, 61, 62, 63, 64, 66, 72], "touch": [1, 61], "toward": [31, 36, 38, 42, 45, 46], "tradit": 49, "train": [1, 2, 15, 64], "train_spacy_n": 15, "transcript": 0, "transfom": [45, 46], "transform": [31, 34, 35, 36, 51], "transform_utter": 50, "treat": [0, 1, 59, 61], "tri": [50, 64], "trivial": [3, 44, 62], "troubl": [1, 61], "true": [0, 1, 2, 37, 61, 63, 67, 71], "truncat": 2, "truth_intensifi": 49, "ttr": 64, "tupl": [0, 1, 2, 15, 19, 64], "turn": [0, 2, 25, 28, 31, 32, 37, 39, 61, 64, 65, 71], "turn_count": 59, "turn_df": 71, "turn_id": 71, "turn_taking_featur": 11, "twice": 63, "twitter": [1, 51, 61], "two": [0, 1, 2, 23, 31, 34, 36, 41, 45, 46, 52, 62, 63], "txt": 19, "type": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 28, 37, 39, 52, 63, 64, 65, 66, 67, 68, 70, 71, 72, 73], "typic": [1, 34, 40, 41, 42, 52, 60], "u": [0, 1, 2, 22, 31, 36, 48, 49, 58], "uci": 16, "uh": [31, 36], "ulrich": 55, "um": [31, 36, 60], "umbrella": [8, 29, 34], "uncertain": [5, 30], "uncertainti": 30, "under": [0, 1, 10, 11, 12, 28, 40], "underli": [1, 61], "underscor": [1, 61], "understand": [0, 33, 39, 43, 48, 58, 61, 62], "understood": 33, "uninterrupt": 59, "uniqu": [0, 1, 2, 6, 9, 13, 16, 23, 25, 41, 47, 52, 60, 61, 63, 71], "unit": [0, 2, 23], "univers": 62, "unix": 58, "unless": [31, 36], "unpack": 62, "unpreprocess": [0, 2], "until": [31, 36, 45, 46], "unzip": [1, 61], "up": [1, 17, 21, 28, 31, 35, 36, 37, 45, 46, 51, 59, 61], "updat": [1, 9, 40, 54, 61], "upenn": 1, "upload": 13, "upon": 33, "upper": 42, "us": [0, 1, 2, 3, 5, 11, 12, 13, 17, 19, 24, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 40, 41, 42, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 60, 62, 64, 65, 66, 67, 71], "usag": [21, 24], "use_time_if_poss": 63, "user": [0, 1, 2, 9, 15, 22, 37, 47, 48, 51, 61, 62, 63, 64, 65, 66, 69, 72], "user_data": [2, 65, 66], "user_df": 9, "user_level_featur": 2, "user_list": 9, "userlevelfeaturescalcul": [2, 66, 69], "usernam": [22, 48], "utf": 1, "util": [1, 12, 21, 61, 62, 63, 64, 65, 66, 67, 68, 70, 71, 72, 73], "utilti": 62, "utter": [0, 1, 2, 3, 4, 5, 13, 14, 15, 16, 17, 20, 21, 23, 24, 30, 31, 32, 34, 35, 36, 37, 38, 40, 41, 42, 43, 44, 45, 46, 50, 51, 52, 54, 58, 60, 61, 67], "utteranc": 42, "v": [0, 1, 2, 13, 42, 61], "v0": 0, "valenc": 51, "valid": [23, 55], "valu": [0, 1, 2, 5, 6, 10, 12, 13, 18, 19, 23, 28, 30, 31, 34, 36, 37, 40, 41, 42, 45, 46, 47, 55, 59, 61, 64, 67, 68, 71, 72, 73], "vari": [13, 31, 34, 35], "variabl": [1, 56, 57, 64, 65, 66], "varianc": [8, 34], "variance_in_dd": 11, "variat": [4, 32], "varieti": [42, 62], "variou": [19, 42, 64, 65, 66], "vast": 62, "ve": [0, 31, 36, 50, 61], "vec": 6, "vect_data": [1, 7, 8, 28, 61, 64, 65, 66], "vect_path": 67, "vector": [0, 2, 6, 7, 8, 13, 28, 34, 35, 40, 55, 61, 64, 65, 67], "vector_data": [0, 1, 2, 61], "vector_directori": [0, 1, 2, 61, 65], "vein": 45, "verb": [19, 31, 36], "verbal": 32, "veri": [5, 28, 30, 31, 34, 35, 36, 42, 49, 54], "verifi": 2, "verit": 62, "version": [1, 12, 14, 21, 28, 31, 40, 51, 61], "versu": [4, 29, 47, 55, 59], "via": [3, 44], "view": 50, "visit": 41, "voila": 62, "w": 31, "wa": [0, 1, 2, 5, 12, 31, 32, 35, 36, 47, 51, 56, 59, 62, 71], "wai": [1, 2, 29, 30, 31, 32, 34, 49, 50, 54, 56, 57, 61, 62, 66], "waiai": 62, "wait": [4, 55], "walk": 1, "walkthrough": [0, 61, 62], "want": [1, 28, 34, 59, 61, 62, 67], "warn": 50, "watt": [1, 2, 62, 71], "we": [0, 1, 2, 3, 4, 5, 9, 10, 11, 12, 15, 16, 18, 23, 24, 28, 29, 30, 31, 34, 35, 36, 37, 40, 41, 42, 44, 45, 46, 47, 48, 49, 50, 52, 53, 55, 56, 57, 58, 59, 61, 62, 66, 67, 71], "web": 70, "websit": [1, 61], "week": 47, "weight": 66, "weigt": 31, "welcom": 61, "well": [29, 31, 36, 55, 62], "went": 41, "were": [1, 12, 31, 36, 42], "western": 1, "wh": [19, 31, 36], "wh_question": [32, 49, 54], "wharton": 62, "what": [1, 2, 12, 16, 20, 29, 31, 32, 34, 35, 36, 39, 41, 45, 46, 47, 50, 54, 62, 63], "whatev": [1, 31, 36], "wheel": 62, "when": [1, 16, 20, 31, 33, 36, 47, 54, 55, 59, 60, 61, 62, 69, 71], "whenev": 71, "where": [1, 2, 19, 20, 28, 31, 32, 36, 37, 40, 41, 42, 48, 50, 51, 54, 59, 61, 65, 68, 73], "wherea": [31, 34, 35, 36, 43], "wherev": [31, 36], "whether": [1, 2, 10, 16, 19, 32, 37, 38, 41, 43, 47, 57, 58, 62, 63, 64, 67, 71], "which": [0, 1, 2, 3, 4, 5, 7, 9, 12, 13, 15, 16, 18, 23, 25, 28, 31, 34, 35, 36, 37, 38, 40, 41, 42, 51, 53, 54, 55, 56, 57, 58, 59, 61, 62, 64, 66, 68, 69, 71, 72, 73], "while": [31, 32, 34, 36, 37, 44, 45, 46, 55, 62, 71], "whitespac": 43, "who": [20, 31, 32, 36, 47, 51, 54, 59, 60, 62], "whole": [28, 59, 62, 71], "whom": [31, 36, 54], "whose": [31, 36, 54], "why": [20, 29, 31, 36, 54], "wide": 31, "wien": 62, "wiki": [21, 29, 70], "wiki_link": [1, 61], "wikipedia": [21, 33, 37, 70], "williamson": 60, "wish": [1, 2, 18, 28], "within": [0, 1, 2, 8, 11, 16, 28, 30, 31, 34, 35, 36, 41, 45, 46, 52, 55, 59, 60, 62, 63, 64, 68, 71, 73], "within_group": 2, "within_person_discursive_rang": 11, "within_task": [0, 1, 2, 71], "without": [1, 19, 31, 36, 42, 47, 54, 62, 69], "won": [0, 31, 36, 45], "wonder": 56, "woolei": 4, "woollei": [13, 40, 55], "wooten": 55, "word": [3, 10, 11, 12, 13, 14, 16, 19, 20, 21, 22, 28, 30, 32, 33, 37, 38, 39, 40, 41, 43, 45, 46, 48, 49, 52, 53, 54, 56, 57, 62, 64, 65, 66, 69, 70], "word_mimicri": 11, "word_start": [19, 49], "wordnet": [1, 61], "words_in_lin": 19, "work": [0, 47, 50, 55, 61, 62], "world": 55, "worri": 62, "would": [1, 29, 31, 34, 35, 36, 37, 42, 50, 54, 62], "wouldn": [31, 36], "wow": 50, "wp": 13, "write": [2, 29, 60], "www": [12, 13, 18, 41, 64], "x": [0, 1, 2, 4, 46, 68], "xinlan": 62, "yashveer": 62, "ye": 19, "yeah": [31, 36], "yeoman": [18, 49], "yesno_quest": [32, 49, 54], "yet": 48, "ylatau": 12, "you": [0, 1, 2, 11, 24, 29, 31, 36, 37, 43, 47, 50, 59, 61, 62, 69], "your": [0, 29, 31, 32, 36, 37, 50, 59, 61, 62], "yourself": [31, 36, 50], "yuluan": 62, "yup": [31, 36], "yuxuan": 62, "z": [12, 39, 49, 51, 64, 73], "zero": [13, 52], "zhang": 62, "zheng": 62, "zhong": 62, "zhou": 62, "zscore": 41, "zscore_chat": 41, "zscore_chats_and_convers": 69, "zscore_convers": 41, "\u00bc": 47, "\u03c4": 55}, "titles": ["The Basics (Get Started Here!)", "Worked Example", "feature_builder module", "basic_features module", "burstiness module", "certainty module", "discursive_diversity module", "fflow module", "get_all_DD_features module", "get_user_network module", "hedge module", "Features: Technical Documentation", "info_exchange_zscore module", "information_diversity module", "lexical_features_v2 module", "named_entity_recognition_features module", "other_lexical_features module", "politeness_features module", "politeness_v2 module", "politeness_v2_helper module", "question_num module", "readability module", "reddit_tags module", "temporal_features module", "textblob_sentiment_analysis module", "turn_taking_features module", "variance_in_DD module", "within_person_discursive_range module", "word_mimicry module", "FEATURE NAME", "Certainty", "Content Word Accommodation", "Conversational Repair", "Dale-Chall Score", "Discursive Diversity", "Forward Flow", "Function Word Accommodation", "Gini Coefficient", "Hedge", "Features: Conceptual Documentation", "Information Diversity", "Information Exchange", "Linguistic Inquiry and Word Count (LIWC) and Other Lexicons", "Message Length", "Message Quantity", "Mimicry (BERT)", "Moving Mimicry", "Named Entity Recognition", "Online Discussion Tags", "Politeness/Receptiveness Markers", "Politeness Strategies", "Sentiment (RoBERTa)", "Positivity Z-Score", "Proportion of First Person Pronouns", "Question (Naive)", "Team Burstiness", "Textblob Polarity", "Textblob Subjectivity", "Time Difference", "Turn Taking Index", "Word Type-Token Ratio", "The Team Communication Toolkit", "Introduction", "assign_chunk_nums module", "calculate_chat_level_features module", "calculate_conversation_level_features module", "calculate_user_level_features module", "check_embeddings module", "gini_coefficient module", "Utilities", "preload_word_lists module", "preprocess module", "summarize_features module", "zscore_chats_and_conversation module"], "titleterms": {"A": 0, "One": 0, "The": [0, 61, 62], "accommod": [31, 36], "addit": 1, "advanc": 1, "assign_chunk_num": 63, "assumpt": 0, "basic": [0, 1, 29, 30, 31, 33, 34, 35, 36, 37, 38, 40, 41, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 55, 56, 57, 58, 59, 60], "basic_featur": 3, "bert": 45, "bursti": [4, 55], "calculate_chat_level_featur": 64, "calculate_conversation_level_featur": 65, "calculate_user_level_featur": 66, "caveat": [29, 30, 31, 33, 34, 35, 36, 38, 40, 41, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 55, 56, 57, 58, 59], "certainti": [5, 30], "chall": 33, "chat": [11, 39], "check_embed": 67, "citat": [29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60], "class": 69, "code": [0, 1], "coeffici": 37, "column": [1, 61], "commun": 61, "conceptu": 39, "configur": 1, "consider": 1, "content": [31, 61], "convers": [1, 11, 32, 39, 62, 69], "count": [42, 59], "customiz": 0, "dale": 33, "data": 1, "declar": 61, "demo": [0, 1], "detail": 1, "differ": 58, "directori": 1, "discurs": 34, "discursive_divers": 6, "discuss": 48, "divers": [34, 40], "document": [11, 39, 62], "driver": 69, "entiti": 47, "environ": [1, 61], "exampl": [1, 41, 47], "exchang": 41, "featur": [1, 11, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 69], "feature_build": 2, "featurebuild": [1, 61, 62], "fflow": 7, "file": [1, 30, 34, 35, 45, 46, 47, 51], "first": 53, "flow": 35, "forward": 35, "function": [0, 36], "gener": [1, 61, 62], "get": [0, 1, 61, 62], "get_all_dd_featur": 8, "get_user_network": 9, "gini": 37, "gini_coeffici": 68, "hedg": [10, 38], "here": 0, "high": [29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60], "implement": [29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60], "import": [1, 61], "index": 59, "indic": 61, "info_exchange_zscor": 12, "inform": [1, 40, 41, 61], "information_divers": 13, "input": [1, 34], "inquiri": 42, "inspect": [1, 61], "interpret": [29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60], "introduct": 62, "intuit": [29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60], "kei": 0, "length": 43, "level": [11, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 62, 69], "lexical_features_v2": 14, "lexicon": 42, "light": 0, "linguist": 42, "liwc": 42, "marker": 49, "messag": [43, 44], "mimicri": [45, 46], "modul": [2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 63, 64, 65, 66, 67, 68, 70, 71, 72, 73], "motiv": 62, "move": 46, "naiv": 54, "name": [1, 29, 47, 61], "named_entity_recognition_featur": 15, "note": [29, 30, 31, 33, 34, 35, 36, 38, 40, 41, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 55, 56, 57, 58, 59], "onlin": 48, "other": [42, 69], "other_lexical_featur": 16, "ouput": 34, "our": 62, "output": [1, 30, 35, 45, 46, 47, 51], "packag": [0, 1, 61], "paramet": [0, 1], "person": 53, "pip": [1, 61], "polar": 56, "polit": [49, 50], "politeness_featur": 17, "politeness_v2": 18, "politeness_v2_help": 19, "posit": 52, "preload_word_list": 70, "preprocess": 71, "pronoun": 53, "proport": 53, "quantiti": 44, "question": 54, "question_num": 20, "ratio": 60, "readabl": 21, "recept": 49, "recognit": 47, "recommend": [1, 61], "reddit_tag": 22, "relat": [29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60], "repair": 32, "roberta": 51, "run": 1, "sampl": [0, 1], "score": [33, 41, 52], "sentiment": 51, "speaker": [11, 59, 62, 69], "start": [0, 1, 61, 62], "strategi": 50, "subject": 57, "summarize_featur": 72, "tabl": 61, "tag": 48, "take": 59, "team": [55, 61, 62], "technic": 11, "temporal_featur": 23, "textblob": [56, 57], "textblob_sentiment_analysi": 24, "time": 58, "token": 60, "toolkit": 61, "touch": 0, "train": 47, "troubleshoot": [1, 61], "turn": [1, 59], "turn_taking_featur": 25, "type": 60, "us": 61, "user": 11, "util": 69, "utter": [11, 39, 62, 69], "variance_in_dd": 26, "vector": 1, "virtual": [1, 61], "walkthrough": 1, "within_person_discursive_rang": 27, "word": [31, 36, 42, 60], "word_mimicri": 28, "work": 1, "your": 1, "z": [41, 52], "zscore_chats_and_convers": 73}}) \ No newline at end of file diff --git a/docs/build/html/utils/assign_chunk_nums.html b/docs/build/html/utils/assign_chunk_nums.html index a5d8b8d9..c530ec89 100644 --- a/docs/build/html/utils/assign_chunk_nums.html +++ b/docs/build/html/utils/assign_chunk_nums.html @@ -47,11 +47,11 @@

    Contents:

    diff --git a/docs/build/html/utils/gini_coefficient.html b/docs/build/html/utils/gini_coefficient.html index 594781b7..53487b1b 100644 --- a/docs/build/html/utils/gini_coefficient.html +++ b/docs/build/html/utils/gini_coefficient.html @@ -47,11 +47,11 @@

    Contents:

    • Introduction
    • -
    • The Basics
    • -
    • feature_builder module
    • +
    • The Basics (Get Started Here!)
    • +
    • Worked Example
    • Features: Technical Documentation
    • Features: Conceptual Documentation
    • -
    • Worked Example
    • +
    • feature_builder module
    • Utilities
      • “Driver” Classes: Utterance-, Conversation-, and Speaker-Level Features
      • Other Utilities
          diff --git a/docs/build/html/utils/index.html b/docs/build/html/utils/index.html index 477e3ccf..0cecb5d2 100644 --- a/docs/build/html/utils/index.html +++ b/docs/build/html/utils/index.html @@ -22,7 +22,7 @@ - + @@ -47,11 +47,11 @@

          Contents:

          • Introduction
          • -
          • The Basics
          • -
          • feature_builder module
          • +
          • The Basics (Get Started Here!)
          • +
          • Worked Example
          • Features: Technical Documentation
          • Features: Conceptual Documentation
          • -
          • Worked Example
          • +
          • feature_builder module
          • Utilities
            • “Driver” Classes: Utterance-, Conversation-, and Speaker-Level Features
              • calculate_chat_level_features module
              • @@ -133,7 +133,7 @@

                Other Utilities - + diff --git a/docs/build/html/utils/preload_word_lists.html b/docs/build/html/utils/preload_word_lists.html index f395dd8e..7b5787a5 100644 --- a/docs/build/html/utils/preload_word_lists.html +++ b/docs/build/html/utils/preload_word_lists.html @@ -47,11 +47,11 @@

                Contents:

                • Introduction
                • -
                • The Basics
                • -
                • feature_builder module
                • +
                • The Basics (Get Started Here!)
                • +
                • Worked Example
                • Features: Technical Documentation
                • Features: Conceptual Documentation
                • -
                • Worked Example
                • +
                • feature_builder module
                • Utilities
                  • “Driver” Classes: Utterance-, Conversation-, and Speaker-Level Features
                  • Other Utilities
                      diff --git a/docs/build/html/utils/preprocess.html b/docs/build/html/utils/preprocess.html index 53397c0d..ab982aaa 100644 --- a/docs/build/html/utils/preprocess.html +++ b/docs/build/html/utils/preprocess.html @@ -47,11 +47,11 @@

                      Contents:

                      • Introduction
                      • -
                      • The Basics
                      • -
                      • feature_builder module
                      • +
                      • The Basics (Get Started Here!)
                      • +
                      • Worked Example
                      • Features: Technical Documentation
                      • Features: Conceptual Documentation
                      • -
                      • Worked Example
                      • +
                      • feature_builder module
                      • Utilities
                        • “Driver” Classes: Utterance-, Conversation-, and Speaker-Level Features
                        • Other Utilities
                            diff --git a/docs/build/html/utils/summarize_features.html b/docs/build/html/utils/summarize_features.html index d3334c35..e4d8f4dd 100644 --- a/docs/build/html/utils/summarize_features.html +++ b/docs/build/html/utils/summarize_features.html @@ -47,11 +47,11 @@

                            Contents:

                            • Introduction
                            • -
                            • The Basics
                            • -
                            • feature_builder module
                            • +
                            • The Basics (Get Started Here!)
                            • +
                            • Worked Example
                            • Features: Technical Documentation
                            • Features: Conceptual Documentation
                            • -
                            • Worked Example
                            • +
                            • feature_builder module
                            • Utilities
                              • “Driver” Classes: Utterance-, Conversation-, and Speaker-Level Features
                              • Other Utilities
                                  diff --git a/docs/build/html/utils/zscore_chats_and_conversation.html b/docs/build/html/utils/zscore_chats_and_conversation.html index 634141eb..5d0691ef 100644 --- a/docs/build/html/utils/zscore_chats_and_conversation.html +++ b/docs/build/html/utils/zscore_chats_and_conversation.html @@ -47,11 +47,11 @@

                                  Contents:

                                  • Introduction
                                  • -
                                  • The Basics
                                  • -
                                  • feature_builder module
                                  • +
                                  • The Basics (Get Started Here!)
                                  • +
                                  • Worked Example
                                  • Features: Technical Documentation
                                  • Features: Conceptual Documentation
                                  • -
                                  • Worked Example
                                  • +
                                  • feature_builder module
                                  • Utilities
                                    • “Driver” Classes: Utterance-, Conversation-, and Speaker-Level Features
                                    • Other Utilities
                                        diff --git a/docs/source/basics.rst b/docs/source/basics.rst index 87221375..1a071480 100644 --- a/docs/source/basics.rst +++ b/docs/source/basics.rst @@ -1,7 +1,7 @@ .. _basics: -The Basics -========== +The Basics (Get Started Here!) +================================ A Light-Touch, One-Function Package ************************************* @@ -17,7 +17,12 @@ Demo / Sample Code We have provided a simple example file, "featurize.py", and a demo notebook, "demo.ipynb," under our `examples folder `_ on GitHub. -You can also `access our demo notebook on Google Colab `_, where you can make a copy and run it on your own. +We also have demos available on Google Colab that you can copy and run on your own: + +- `Demo 1: Overview of Team Communication Toolkit and 3 Levels of Features `_ + +- `Demo 2: Sample Analysis with the Group Affect and Performance Corpus `_ + Key Assumptions and Parameters ******************************* @@ -27,27 +32,29 @@ Package Assumptions 1. **Pandas DataFrame**: Your input should be a `Pandas dataframe `_. -2. **Unique Conversation Identifier**: Each conversation in your dataframe needs a unique identifier (defined by **conversation_id_col**), or it can be generated by grouping multiple columns (defined by **grouping_keys**). +2. **Unique Conversation Identifier**: Each conversation in your dataframe needs a unique identifier (defined by ``conversation_id_col``), or it can be generated by grouping multiple columns (defined by ``grouping_keys``). - * **conversation_id_col** defaults to "conversation_num." - * If **grouping_keys** are provided, they override the conversation identifier. + * ``conversation_id_col`` defaults to "conversation_num." + * If ``grouping_keys`` are provided, they override the conversation identifier. -3. **Unique Speaker Identifier**: Each speaker in the conversation should have a unique identifier (defined by **speaker_id_col**). +3. **Unique Speaker Identifier**: Each speaker in the conversation should have a unique identifier (defined by ``speaker_id_col``). - * **speaker_id_col** defaults to "speaker_nickname." + * ``speaker_id_col`` defaults to "speaker_nickname." -4. **Single Utterance Column**: The text of a single utterance should be in one column in the dataframe (defined by **message_col**). +4. **Single Utterance Column**: The text of a single utterance should be in one column in the dataframe (defined by ``message_col``). - * **message_col** defaults to "message." + * ``message_col`` defaults to "message." * Ensure you've segmented and preprocessed conversational transcripts into "utterances" or "turns". We do not accept open-ended transcripts. 5. **Temporal Order**: Messages should be in **temporal order**. Earlier rows are assumed to be utterances that occurred before later rows. -6. **Timestamps**: If timestamps for each message exist, they should be in a column (**timestamp_col**), or in two columns. **timestamp_col** can be a string or a tuple of (start, end), with the first item as the start time and the second item as the end time. +6. **Timestamps**: If timestamps for each message exist, they should be in a column (``timestamp_col``), or in two columns. ``timestamp_col`` can be a string or a tuple of (start, end), with the first item as the start time and the second item as the end time. + +7. **Timestamp Unit**: We accept all timestamp formats compatible with `pandas.to_datetime `_. If your timestamp is an integer or float number, we default to treating the units as milliseconds ('ms'). This default can be changed using the ``timestamp_unit`` parameter; acceptable values are ``(D, s, ms, us, ns)``. -7. **Additional Columns**: Columns not required as inputs (conversation identifier, speaker identifier, message, and timestamp column(s)) are assumed to be metadata and won't be summarized in the featurization process. +8. **Metadata Columns**: Columns not required as inputs (conversation identifier, speaker identifier, message, and timestamp column(s)) are assumed to be metadata and won't be summarized in the featurization process. -8. **Vector Data Cache**: Your data's vector data will be cached in **vector_directory**. This directory will be created if it doesn’t exist, but its contents should be reserved for cached vector files. +9. **Vector Data Cache**: Your data's vector data will be cached in ``vector_directory``. This directory will be created if it doesn’t exist, but its contents should be reserved for cached vector files. * This parameter defaults to "vector_data/". @@ -55,9 +62,9 @@ Package Assumptions * Additionally, we assume that empty messages are equivalent to "NaN vector," defined `here `_. -9. **Output File Base**: We generate three output files at different levels of analysis. (Utterance/Chat, Speaker/User, and Conversation). We recommend using the **output_file_base** parameter to give them all a common naming scheme (a string that will be used to automatically name all files). You can also name each of them individually, but there's some complexity (for now) that we explain in :ref:`output_file_details`. +10. **Output File Base**: We generate three output files at different levels of analysis. (Utterance/Chat, Speaker/User, and Conversation). We recommend using the ``output_file_base`` parameter to give them all a common naming scheme (a string that will be used to automatically name all files). You can also name each of them individually, but there's some complexity (for now) that we explain in :ref:`output_file_details`. -10. **Custom Features**: To save time, we exclude features that require computing sentence vectors by default. To access these features, use the **custom_features** parameter in your FeatureBuilder: +11. **Custom Features**: To save time, we exclude features that require computing sentence vectors by default. To access these features, use the ``custom_features`` parameter in your FeatureBuilder: .. code-block:: python @@ -68,21 +75,21 @@ Package Assumptions "Forward Flow", "Discursive Diversity"] -11. **Summarizing Numeric Features**: All numeric utterance-level features are **summarizable**. Aggregations (e.g., "mean level of positivity") will appear in the Conversation-level data. +12. **Summarizing Numeric Features**: All numeric utterance-level features are **summarizable**. Aggregations (e.g., "mean level of positivity") will appear in the Conversation-level data. Customizable Parameters ++++++++++++++++++++++++ Here are some parameters that can be customized. For more details, refer to the :ref:`examples` and :ref:`feature_builder`. -1. **analyze_first_pct**: Analyze only the first portion (X% of utterances) of a conversation. +1. ``analyze_first_pct``: Analyze only the first portion (X% of utterances) of a conversation. -2. **turns**: Combine successive messages by the same individual into a single "turn." +2. ``turns``: Combine successive messages by the same individual into a single "turn." -3. **cumulative_grouping** and **within_task**: Perform nested grouping, analyzing "sub-conversations" within a larger conversation together. +3. ``cumulative_grouping`` and ``within_task``: Perform nested grouping, analyzing "sub-conversations" within a larger conversation together. -4. **ner_training_df** and **ner_cutoff**: Measure the number of named entities in each utterance (see :ref:`named_entity_recognition`). +4. ``ner_training_df`` and ``ner_cutoff``: Measure the number of named entities in each utterance (see :ref:`named_entity_recognition`). -5. **regenerate_vectors**: Force-regenerate vector data even if it already exists. +5. ``regenerate_vectors``: Force-regenerate vector data even if it already exists. -6. **compute_vectors_from_preprocessed**: Computes vectors using preprocessed text (that is, with capitalization and punctuation removed). This was the default behavior for v.0.1.3 and earlier, but we now default to computing metrics on the unpreprocessed text (which INCLUDES capitalization and punctuation), and this parameter now defaults to False. \ No newline at end of file +6. ``compute_vectors_from_preprocessed``: Computes vectors using preprocessed text (that is, with capitalization and punctuation removed). This was the default behavior for v.0.1.3 and earlier, but we now default to computing metrics on the unpreprocessed text (which INCLUDES capitalization and punctuation), and this parameter now defaults to False. \ No newline at end of file diff --git a/docs/source/examples.rst b/docs/source/examples.rst index b7bc948d..8d39f537 100644 --- a/docs/source/examples.rst +++ b/docs/source/examples.rst @@ -8,7 +8,11 @@ Demo / Sample Code After following the "Getting Started" steps below, the Team Communication Toolkit can be imported at the top of any Python script. We have provided a simple example file, "featurize.py", and a demo notebook, "demo.ipynb," under our `examples folder `_ on GitHub. -You can also `access our demo notebook on Google Colab `_, where you can make a copy and run it on your own. +We also have demos available on Google Colab that you can copy and run on your own: + +- `Demo 1: Overview of Team Communication Toolkit and 3 Levels of Features `_ + +- `Demo 2: Sample Analysis with the Group Affect and Performance Corpus `_ Finally, this page will walk you through a case study, highlighting top use cases and considerations when using the toolkit. diff --git a/docs/source/index.rst b/docs/source/index.rst index 9e4be9bf..4e345e2b 100644 --- a/docs/source/index.rst +++ b/docs/source/index.rst @@ -150,10 +150,10 @@ Use the Table of Contents below to learn more about our tool. We recommend that intro basics - feature_builder + examples features/index features_conceptual/index - examples + feature_builder utils/index Indices and Tables diff --git a/src/team_comm_tools/feature_builder.py b/src/team_comm_tools/feature_builder.py index bd600064..b80d4837 100644 --- a/src/team_comm_tools/feature_builder.py +++ b/src/team_comm_tools/feature_builder.py @@ -66,6 +66,9 @@ class FeatureBuilder: :param timestamp_col: A string representing the column name that should be selected as the message. Defaults to "timestamp". :type timestamp_col: str, optional + :param timestamp_unit: A string representing the unit of the timestamp (if the timestamp is numeric). Default to the unit 'ms' (milliseconds). Other options (D,s,ms,us,ns) can be found on the Pandas reference: https://pandas.pydata.org/docs/reference/api/pandas.to_datetime.html + :type timestamp_unit: str, optional + :param grouping_keys: A list of multiple identifiers that collectively identify a conversation. If non-empty, we will group by all of the keys in the list and use the grouped key as the unique "conversational identifier." Defaults to an empty list. :type grouping_keys: list, optional @@ -111,6 +114,7 @@ def __init__( speaker_id_col: str = "speaker_nickname", message_col: str = "message", timestamp_col: str | tuple[str, str] = "timestamp", + timestamp_unit = "ms", grouping_keys: list = [], cumulative_grouping = False, within_task = False, @@ -213,6 +217,7 @@ def __init__( self.speaker_id_col = speaker_id_col self.message_col = message_col self.timestamp_col = timestamp_col + self.timestamp_unit = timestamp_unit self.column_names = { 'conversation_id_col': conversation_id_col, 'speaker_id_col': speaker_id_col, @@ -564,7 +569,8 @@ def chat_level_features(self) -> None: ner_cutoff = self.ner_cutoff, conversation_id_col = self.conversation_id_col, message_col = self.message_col, - timestamp_col = self.timestamp_col + timestamp_col = self.timestamp_col, + timestamp_unit = self.timestamp_unit ) # Calling the driver inside this class to create the features. self.chat_data = chat_feature_builder.calculate_chat_level_features(self.feature_methods_chat) diff --git a/src/team_comm_tools/features/temporal_features.py b/src/team_comm_tools/features/temporal_features.py index 20cf89df..3a28d7c0 100644 --- a/src/team_comm_tools/features/temporal_features.py +++ b/src/team_comm_tools/features/temporal_features.py @@ -20,9 +20,9 @@ def coerce_to_date_or_number(value): pd.to_numeric(value) return value except (ValueError, TypeError): - return None + raise ValueError("Incorrect timestamp format: " + str(value)) -def get_time_diff(df, on_column, conversation_id_col): +def get_time_diff(df, on_column, conversation_id_col, timestamp_unit): """ Obtains the time difference between messages, assuming there is only a *single* timestamp column representing the time of each utterance. @@ -31,20 +31,22 @@ def get_time_diff(df, on_column, conversation_id_col): df (pd.DataFrame): This is a pandas dataframe of the chat level features. on_column (str): The column name for the timestamp columns. conversation_id_col(str): A string representing the column name that should be selected as the unique conversation identifier. + timestamp_unit (str): A string representing the unit of a timestamp. Defaults to 'ms'. Returns: pd.Series: A column representing the time difference between messages. """ # Replace instances in which the time is a string that cannot be coerced into a date or number with None - df[on_column] = df[on_column].apply(coerce_to_date_or_number) + df[on_column] = df[on_column].apply(coerce_to_date_or_number) #convert timestamp column to datetime type (in minutes) try: if(isinstance(df[on_column][0], str)): # String datetime, e.g., '2023-02-20 09:00:00' df[on_column] = pd.to_datetime(df[on_column]) - elif(isinstance(df[on_column][0], np.int64)): - df[on_column] = pd.to_datetime(df[on_column], unit='ms') + elif(isinstance(df[on_column][0], np.int64)): + unit = timestamp_unit + df[on_column] = pd.to_datetime(df[on_column], unit=unit) # set and zero time_diff column df["time_diff"] = np.zeros(len(df)) @@ -52,15 +54,15 @@ def get_time_diff(df, on_column, conversation_id_col): for i in range(1, len(df)): if df.loc[i, conversation_id_col] == df.loc[i-1, conversation_id_col]: # only do this if they're in the same conversation df.loc[i, "time_diff"] = (df.loc[i, on_column] - df.loc[(i-1), on_column]) / pd.Timedelta(seconds=1) + except TypeError: - # dateTime conversion failed, which means that we can likely treat it as just an int representing # seconds elapsed - for i in range(1, len(df)): - if df.loc[i, conversation_id_col] == df.loc[i-1, conversation_id_col]: # only do this if they're in the same conversation - df.loc[i, "time_diff"] = (df.loc[i, on_column] - df.loc[(i-1), on_column]) + + # throw an error + raise ValueError("Error parsing timestamp column. Please refer to documentation for correct format.") return df['time_diff'] -def get_time_diff_startend(df, timestamp_start, timestamp_end, conversation_id_col): +def get_time_diff_startend(df, timestamp_start, timestamp_end, conversation_id_col, timestamp_unit): """ Obtains the time difference between messages, assuming there are *two* timestamp columns, one representing the start of a message and one representing the end of a message. @@ -73,16 +75,35 @@ def get_time_diff_startend(df, timestamp_start, timestamp_end, conversation_id_c timestamp_start(str): A string representing the column name that should be selected as the start timestamp. timestamp_end(str): A string representing the column name that should be selected as the end timestamp. conversation_id_col(str): A string representing the column name that should be selected as the conversation ID. + timestamp_unit (str): A string representing the unit of a timestamp. Defaults to 'ms'. Returns: pd.Series: A column representing the time difference between messages. """ - # set and zero time_diff column - df["time_diff"] = np.zeros(len(df)) + df[timestamp_start] = df[timestamp_start].apply(coerce_to_date_or_number) + df[timestamp_end] = df[timestamp_end].apply(coerce_to_date_or_number) + + #convert timestamp column to datetime type (in minutes) + try: + if(isinstance(df[timestamp_start][0], str)): # String datetime, e.g., '2023-02-20 09:00:00' + df[timestamp_start] = pd.to_datetime(df[timestamp_start]) + df[timestamp_end] = pd.to_datetime(df[timestamp_end]) + elif(isinstance(df[timestamp_start][0], np.int64)): + unit = timestamp_unit + df[timestamp_start] = pd.to_datetime(df[timestamp_start], unit=unit) + df[timestamp_end] = pd.to_datetime(df[timestamp_end], unit=unit) + # set and zero time_diff column + df["time_diff"] = np.zeros(len(df)) + + for i in range(1, len(df)): + if df.loc[i, conversation_id_col] == df.loc[i-1, conversation_id_col]: # only do this if they're in the same conversation + df.loc[i, "time_diff"] = (df.loc[i, timestamp_start] - df.loc[(i-1), timestamp_end]) / pd.Timedelta(seconds=1) + + except TypeError: + + # throw an error + raise ValueError("Error parsing timestamp column. Please refer to documentation for correct format.") - for i in range(1, len(df)): - if df.loc[i, conversation_id_col] == df.loc[i-1, conversation_id_col]: # only do this if they're in the same conversation - df.loc[i, "time_diff"] = (df.loc[i, timestamp_start] - df.loc[(i-1), timestamp_end]) return df['time_diff'] \ No newline at end of file diff --git a/src/team_comm_tools/utils/calculate_chat_level_features.py b/src/team_comm_tools/utils/calculate_chat_level_features.py index 3aa73645..77afcbe0 100644 --- a/src/team_comm_tools/utils/calculate_chat_level_features.py +++ b/src/team_comm_tools/utils/calculate_chat_level_features.py @@ -51,7 +51,8 @@ def __init__( ner_cutoff: int, conversation_id_col: str, message_col: str, - timestamp_col: str | tuple[str, str] + timestamp_col: str | tuple[str, str], + timestamp_unit = str ) -> None: self.chat_data = chat_data @@ -61,6 +62,7 @@ def __init__( self.ner_cutoff = ner_cutoff self.conversation_id_col = conversation_id_col self.timestamp_col = timestamp_col + self.timestamp_unit = timestamp_unit self.message_col = message_col # load easy Dale-Chall words exactly once. self.easy_dale_chall_words = get_dale_chall_easy_words() @@ -341,12 +343,12 @@ def get_temporal_features(self) -> None: """ if type(self.timestamp_col) is str and {self.timestamp_col}.issubset(self.chat_data.columns): self.chat_data["time_diff"] = get_time_diff( - self.chat_data, self.timestamp_col, self.conversation_id_col) + self.chat_data, self.timestamp_col, self.conversation_id_col, self.timestamp_unit) elif type(self.timestamp_col) is tuple: timestamp_start, timestamp_end = self.timestamp_col if {timestamp_start, timestamp_end}.issubset(self.chat_data.columns): self.chat_data["time_diff"] = get_time_diff_startend( - self.chat_data, timestamp_start, timestamp_end, self.conversation_id_col) + self.chat_data, timestamp_start, timestamp_end, self.conversation_id_col, self.timestamp_unit) def calculate_politeness_sentiment(self) -> None: """ diff --git a/tests/data/cleaned_data/test_chat_level.csv b/tests/data/cleaned_data/test_chat_level.csv index 7eb5525e..f1efa901 100644 --- a/tests/data/cleaned_data/test_chat_level.csv +++ b/tests/data/cleaned_data/test_chat_level.csv @@ -1,764 +1,764 @@ -conversation_num,speaker_nickname,message,expected_column,expected_value -1,A,Hello I like fish.,num_words,4 -1,B,This sentence has five words.,num_words,5 -2,A,Hello??,num_words,1 -2,A,1234,num_words,1 -2,B,Is 4 a word?,num_words,4 -3,A,.,num_words,0 -4,test_A,"HELLO WORLD, THIS IS A TEST. hi HI. hi HI hi HI""",num_all_caps,9 -4,test_B,ONE TWO THREE. four five six. sEvEn EiGhT nInE.,num_all_caps,3 -4,test_A,Check out this [link](https://example.com) and this one http://example.org,num_links,2 -4,test_B,I like google.com and wikipedia.org but not amazon.com,num_links,3 -4,test_A,why don't you read everything at https://www.example.com and https://www.example.org and https://www.example.net and https://www.example.ca and https://www.example.co.uk,num_links,5 -4,test_B,"why don't you read everything at -- https://www.example.com -- https://www.example.org -- https://www.example.net -- https://www.example.ca -- https://www.example.co.uk",num_links,5 -4,test_A,"Hello u/user1 and u/user2, hi hi hi?",num_reddit_users,2 -4,test_B,I don't like u/user_1_test but I like u/user2Test,num_reddit_users,2 -4,test_A,"This is **bold**, *italics*, and this is not. This is ***bolded and italicized***",num_emphasis,3 -4,test_B,This is **uneven* in terms of *the emphasis**,num_emphasis,2 -4,test_A,* item 1\n* item 2\n- item 3,num_bullet_points,3 -4,test_B,"Here are all my arguments: -- point 1 -- point 2 -- point 3 -- point 4 is super long and takes up multiple lines point 4 is super long and takes up multiple lines point 4 is super long and takes up multiple lines point 4 is super long and takes up multiple lines point 4 is super long and takes up multiple lines point 4 is super long and takes up multiple lines point 4 is super long and takes up multiple lines point 4 is super long and takes up multiple lines point 4 is super long and takes up multiple lines point 4 is super long and takes up multiple lines point 4 is super long and takes up multiple lines",num_bullet_points,4 -4,test_A,1. First\n2. Second\n3. Third,num_numbered_points,3 -4,test_B,This is the first line.\nThis is the second line.\nThis is the third line.,num_line_breaks,3 -4,test_A,"I have a line - - - - -here is a new line - - -here is a third line",num_line_breaks,3 -4,test_B,this is a line with\rA different kind of return value\rUsing carriage return instead of the newline character,num_line_breaks,3 -4,test_A,"""This is a quote."" She said, ""Here's another.""",num_quotes,2 -4,test_B,"""You miss 100% of the shots you don't take"" -- Wayne Gretzky",num_quotes,1 -4,test_A,"""I can't believe you use single quotes to quote people,"" she said. ""Well, he replied, 'sometimes single quotes are useful when you nest quotes inside other quotes,' according to my English teacher"" Then she said: 'okay'",num_quotes,4 -4,test_B,> Quoting someone else\nThis is my reply.,num_block_quote_responses,1 -4,test_A,> Quoting someone else\nThis is my reply.,num_block_quote_responses,1 -4,test_B,>>>> This is a quote but I went overboard with the carat character,num_block_quote_responses,1 -4,test_A,>> This is one where I put too many of the gt's,num_block_quote_responses,1 -4,test_B,"> Hello! -Goodbye!",num_block_quote_responses,1 -4,test_B,"> here I am making a quote -I respond to it -> I quote again -I respond to that too",num_block_quote_responses,2 -4,test_A,Well... I'm not sure... Maybe...,num_ellipses,3 -4,test_B,hm..what if I only use two periods.............or many periods............,num_ellipses,2 -4,test_B,This is a sentence (with some text in parentheses).,num_parentheses,1 -4,test_A,"""Sure,"" I said confidently (thiking to myself: no way!) This was definitely (not) one of my best moments.",num_parentheses,2 -4,test_B,(((((these parentheses are not properly closed.),num_parentheses,1 -4,test_B,((there are multiple parentheses here)),num_parentheses,2 -4,test_A,((1+(1+3+4)^2)+7+(9+8)),num_parentheses,4 -5,test1,I think that I think that I think,certainty_rocklage,4.5 -5,test2,I am a little confused,certainty_rocklage,2.47 -5,test2,I don't really know the answer,certainty_rocklage,1.33 -5,test3,I am sure that this is correct,certainty_rocklage,8.02 -5,test1,I am fairly certain in my response,certainty_rocklage,8.28 -5,test2,This is without a doubt the best movie I have ever seen,certainty_rocklage,4.5 -5,test2,I am not sure about how to how to approximately handle this,certainty_rocklage,2.69 -5,test3,I believe that he is guilty but I am not very certain,certainty_rocklage,6.56 -5,test1,I an open to you changing my mind on this issue,certainty_rocklage,4.5 -5,test2,I don't think the guy is the a$$hole. Thoughts?,certainty_rocklage,5.44 -5,test2,So who thinks the guy is an ass for asking his mother in law to learn english,certainty_rocklage,4.5 -5,test3,"I think that this person is not an asshole because, according to him, he was very polite while approaching the issue",certainty_rocklage,6.037 -5,test1,I can see how the family is upset because they feel the mother was disrespected but I can also understand the guy's feelings. Why should he have to work as interpreter for his mother in law?,certainty_rocklage,4.5 -5,test2,"Yes, I think his feeling makes sense to me to. Who doesn't want to be independent.",certainty_rocklage,4.89 -5,test2,I was conflicted because I could understand his frustration however I feel he should have maybe discussed strategies with how to approach the mother in law with his wife first.,certainty_rocklage,4.684 -5,test3,His MIL has been here for 8 years. You would think she'd pick up some English by now.,certainty_rocklage,4.5 -5,test1,I think he had every right to want to help his mother in law,certainty_rocklage,4.28 -5,test2,I also agree with culturedCow,certainty_rocklage,4.5 -5,test2,"I don't think he's an asshole. I think his request is reasonable. If you go to live in a foreign country, you should learn the language.",certainty_rocklage,5.125 -5,test3,"I think the guy is an asshole because for all his talk about how easy it is to use resources to learn a language, he didn't take the time to research WHY some people do not.",certainty_rocklage,5.505 -5,test1,I think he also tried to utilize other resources such as language learning apps to help her learn,certainty_rocklage,4.28 -5,test2,"I think also he needs to understand that language learning is not the same for everyone, not everyone has the same capacity to learn new languages quickly.",certainty_rocklage,6.09 -5,test2,"Maybe she does have a problem with learning languages, but she could at least try.",certainty_rocklage,3.79 -5,test3,After the edit he done it made it sound like he really loves his family,certainty_rocklage,6.175 -5,test1,"I don't think the guy is wrong in asking her to learn more english being that she lives in America, but he has to understand she is older and may not have the patience or capacity to learn a lot of english.",certainty_rocklage,5.472 -5,test2,"Learning a second language is easiest when you're a child for a reason. Your brain is wired differently then, which makes it easier.",certainty_rocklage,5.4 -5,test2,I think he tried to help her.� He gave her resources to use and she apparently didn't use them.,certainty_rocklage,4.32 -1,A,hello,Hello_receptiveness_yeomans,1 -1,B,So how should we answer this,Token_count_receptiveness_yeomans,6 -1,A,We can start here. What is the question?,YesNo_Questions_receptiveness_yeomans,0 -1,B,I am not sure. Where is the rest of our team?,WH_Questions_receptiveness_yeomans,1 -1,B,"Please help me figure this out, I really want to do well on this please",Please_receptiveness_yeomans,2 -2,C,Hey,Hello_receptiveness_yeomans,1 -2,C,Okay bro lets split it 50/50,Impersonal_Pronoun_receptiveness_yeomans,1 -2,D,Maybe but how about 60/40? I doubt its fair otherwise,Hedges_receptiveness_yeomans,2 -2,C,Seems fair,Hedges_receptiveness_yeomans,1 -1,B,I am not sure. Where is the rest of our team?,First_Person_Single_receptiveness_yeomans,1 -1,B,"Well please help me figure this out, I really want to do well on this please okay",factuality_politeness_convokit,1 -2,C,Seems possible,hashedge_politeness_convokit,1 -2,E,I see what youre thinking but I disagree,Acknowledgement_receptiveness_yeomans,1 -2,E,We get only one chance so we should understand how to split it,Acknowledgement_receptiveness_yeomans,2 -2,D,"I just don't agree, I'm making the 60/40 split",Adverb_Limiter_receptiveness_yeomans,1 -3,G,hey,indirect_greeting_politeness_convokit,1 -3,G,I think we should try something else,1st_person_start_politeness_convokit,1 -3,F,Ok whatever. You should leave the team then,2nd_person_start_politeness_convokit,1 -4,H,Honestly thank you so so much,factuality_politeness_convokit,1 -4,H,What's the plan?,direct_question_politeness_convokit,1 -4,I,That is the dumbest idea I've heard; youre actually dumb af,hasnegative_politeness_convokit,1 -4,H,What's ur problem here?,hasnegative_politeness_convokit,1 -5,J,Pleasure and an honor to meet you all,haspositive_politeness_convokit,1 -5,K,We should try that next,haspositive_politeness_convokit,0 -5,J,Could you please explain why? I don't really understand why you are thinking that,subjunctive_politeness_convokit,1 -5,K,Sorry sorry I didn't mean to,apologizing_politeness_convokit,1 -6,L,I don't really want to work with you all but let's get this over with,Impersonal_Pronoun_receptiveness_yeomans,1 -6,J,Fine by me,Affirmation_receptiveness_yeomans,1 -6,K,Ok so which part should we do first? the first or second?,YesNo_Questions_receptiveness_yeomans,1 -7,L,Please don't do that?,please_start_politeness_convokit,1 -7,L,I don't think that will work,hashedge_politeness_convokit,1 -7,M,I'm exhuasted rn,hasnegative_politeness_convokit,0 -7,M,i don't really care please just finish this up,haspositive_politeness_convokit,0 -7,N,Please don't do that?,Please_receptiveness_yeomans,1 -7,N,I don't think that will work,Hedges_receptiveness_yeomans,0 -7,O,I'm exhuasted rn,Negative_Emotion_receptiveness_yeomans,0 -7,O,i don't really care please just finish this up,Positive_Emotion_receptiveness_yeomans,0 -8,P,i appreciate all this from you,gratitude_politeness_convokit,1 -8,P,"well we should start rn, our part is long",1st_person_pl_politeness_convokit,1 -8,Q,ok forgive me for this error but,apologizing_politeness_convokit,1 -8,Q,you have to redo the whole thing,2nd_person_politeness_convokit,0 -8,R,ok so who will work with me? where should we begin?,direct_question_politeness_convokit,0 -8,S,i appreciate all this from you,Gratitude_receptiveness_yeomans,1 -8,S,"well we should start rn, our part is long",First_Person_Plural_receptiveness_yeomans,2 -8,T,ok forgive us for this error but,Apology_receptiveness_yeomans,0 -8,T,you have to redo the whole thing,Second_Person_receptiveness_yeomans,1 -8,U,ok so who will work with me? where should we begin?,WH_Questions_receptiveness_yeomans,2 -9,A,"I understand your perspective and agree that I would not want to have resentment in the workplace against women, as that would further compound the issue we are looking at. I do think that it is true that women are underrepresented in STEM careers and am a believer that something should be done to address this discrepancy, even if that is not implementing a priority for women in hiring decisions. While I don\'t think that companies should explicitly hire simply because of their gender, I do think that they should be mindful of the gender gap in STEM and look to address those issues through their hiring practices.",Impersonal_Pronoun_receptiveness_yeomans,12 -10,A,"I understand your perspective and agree that I would not want to have resentment in the workplace against women, as that would further compound the issue we are looking at. I do think that it is true that women are underrepresented in STEM careers and am a believer that something should be done to address this discrepancy, even if that is not implementing a priority for women in hiring decisions. While I don\'t think that companies should explicitly hire simply because of their gender, I do think that they should be mindful of the gender gap in STEM and look to address those issues through their hiring practices.",First_Person_Single_receptiveness_yeomans,5 -11,A,"I understand your perspective and agree that I would not want to have resentment in the workplace against women, as that would further compound the issue we are looking at. I do think that it is true that women are underrepresented in STEM careers and am a believer that something should be done to address this discrepancy, even if that is not implementing a priority for women in hiring decisions. While I don\'t think that companies should explicitly hire simply because of their gender, I do think that they should be mindful of the gender gap in STEM and look to address those issues through their hiring practices.",Hedges_receptiveness_yeomans,3 -12,A,"I understand your perspective and agree that I would not want to have resentment in the workplace against women, as that would further compound the issue we are looking at. I do think that it is true that women are underrepresented in STEM careers and am a believer that something should be done to address this discrepancy, even if that is not implementing a priority for women in hiring decisions. While I don\'t think that companies should explicitly hire simply because of their gender, I do think that they should be mindful of the gender gap in STEM and look to address those issues through their hiring practices.",Negation_receptiveness_yeomans,3 -13,A,"I understand your perspective and agree that I would not want to have resentment in the workplace against women, as that would further compound the issue we are looking at. I do think that it is true that women are underrepresented in STEM careers and am a believer that something should be done to address this discrepancy, even if that is not implementing a priority for women in hiring decisions. While I don\'t think that companies should explicitly hire simply because of their gender, I do think that they should be mindful of the gender gap in STEM and look to address those issues through their hiring practices.",Subjectivity_receptiveness_yeomans,3 -14,A,"I understand your perspective and agree that I would not want to have resentment in the workplace against women, as that would further compound the issue we are looking at. I do think that it is true that women are underrepresented in STEM careers and am a believer that something should be done to address this discrepancy, even if that is not implementing a priority for women in hiring decisions. While I don\'t think that companies should explicitly hire simply because of their gender, I do think that they should be mindful of the gender gap in STEM and look to address those issues through their hiring practices.",Negative_Emotion_receptiveness_yeomans,3 -15,A,"I understand your perspective and agree that I would not want to have resentment in the workplace against women, as that would further compound the issue we are looking at. I do think that it is true that women are underrepresented in STEM careers and am a believer that something should be done to address this discrepancy, even if that is not implementing a priority for women in hiring decisions. While I don\'t think that companies should explicitly hire simply because of their gender, I do think that they should be mindful of the gender gap in STEM and look to address those issues through their hiring practices.",Reasoning_receptiveness_yeomans,1 -16,A,"I understand your perspective and agree that I would not want to have resentment in the workplace against women, as that would further compound the issue we are looking at. I do think that it is true that women are underrepresented in STEM careers and am a believer that something should be done to address this discrepancy, even if that is not implementing a priority for women in hiring decisions. While I don\'t think that companies should explicitly hire simply because of their gender, I do think that they should be mindful of the gender gap in STEM and look to address those issues through their hiring practices.",Agreement_receptiveness_yeomans,1 -17,A,"I understand your perspective and agree that I would not want to have resentment in the workplace against women, as that would further compound the issue we are looking at. I do think that it is true that women are underrepresented in STEM careers and am a believer that something should be done to address this discrepancy, even if that is not implementing a priority for women in hiring decisions. While I don\'t think that companies should explicitly hire simply because of their gender, I do think that they should be mindful of the gender gap in STEM and look to address those issues through their hiring practices.",Second_Person_receptiveness_yeomans,1 -18,A,"I understand your perspective and agree that I would not want to have resentment in the workplace against women, as that would further compound the issue we are looking at. I do think that it is true that women are underrepresented in STEM careers and am a believer that something should be done to address this discrepancy, even if that is not implementing a priority for women in hiring decisions. While I don\'t think that companies should explicitly hire simply because of their gender, I do think that they should be mindful of the gender gap in STEM and look to address those issues through their hiring practices.",Adverb_Limiter_receptiveness_yeomans,1 -19,A,"I understand your perspective and agree that I would not want to have resentment in the workplace against women, as that would further compound the issue we are looking at. I do think that it is true that women are underrepresented in STEM careers and am a believer that something should be done to address this discrepancy, even if that is not implementing a priority for women in hiring decisions. While I don\'t think that companies should explicitly hire simply because of their gender, I do think that they should be mindful of the gender gap in STEM and look to address those issues through their hiring practices.",Disagreement_receptiveness_yeomans,1 -20,A,"I understand your perspective and agree that I would not want to have resentment in the workplace against women, as that would further compound the issue we are looking at. I do think that it is true that women are underrepresented in STEM careers and am a believer that something should be done to address this discrepancy, even if that is not implementing a priority for women in hiring decisions. While I don\'t think that companies should explicitly hire simply because of their gender, I do think that they should be mindful of the gender gap in STEM and look to address those issues through their hiring practices.",Acknowledgement_receptiveness_yeomans,1 -21,A,"I understand your perspective and agree that I would not want to have resentment in the workplace against women, as that would further compound the issue we are looking at. I do think that it is true that women are underrepresented in STEM careers and am a believer that something should be done to address this discrepancy, even if that is not implementing a priority for women in hiring decisions. While I don\'t think that companies should explicitly hire simply because of their gender, I do think that they should be mindful of the gender gap in STEM and look to address those issues through their hiring practices.",First_Person_Plural_receptiveness_yeomans,1 -22,A,"I understand your perspective and agree that I would not want to have resentment in the workplace against women, as that would further compound the issue we are looking at. I do think that it is true that women are underrepresented in STEM careers and am a believer that something should be done to address this discrepancy, even if that is not implementing a priority for women in hiring decisions. While I don\'t think that companies should explicitly hire simply because of their gender, I do think that they should be mindful of the gender gap in STEM and look to address those issues through their hiring practices.",For_Me_receptiveness_yeomans,0 -23,A,And I will always love you,Conjunction_Start_receptiveness_yeomans,1 -23,B,"Can you help me, can you please?",Can_You_receptiveness_yeomans,2 -23,C,"Can you, will you, could you please be mine?",Could_You_receptiveness_yeomans,1 -23,D,"This land is your land, this land is my land; this land was made for you and for me",For_You_receptiveness_yeomans,1 -0,0,unneccessagf shoulds shouldve should'nt,discrepancies_lexical_wordcount,4 -0,0,wouldnt unneedofek want must've should'nt,discrepancies_lexical_wordcount,5 -0,0,hopes wish,discrepancies_lexical_wordcount,2 -0,0,must'nt rather wouldn't ought'nt,discrepancies_lexical_wordcount,4 -0,0,needn't unwantpotnw hopefulness oughta couldn't,discrepancies_lexical_wordcount,5 -0,0,musilej,hear_lexical_wordcount,1 -0,0,listens hearing listenerjp noisy,hear_lexical_wordcount,4 -0,0,noises noisy harmongoc hearing audiblweds,hear_lexical_wordcount,5 -0,0,ear yell listenerpvo,hear_lexical_wordcount,3 -0,0,sang rang ear concertfuw,hear_lexical_wordcount,4 -0,0,drapeulqv backyard loveseatjproz closet,home_lexical_wordcount,4 -0,0,curtainqygkr drapekwvh,home_lexical_wordcount,2 -0,0,bathae,home_lexical_wordcount,1 -0,0,curtainbu loveseatntr family housing rooms,home_lexical_wordcount,5 -0,0,bedroomxhpl furniture,home_lexical_wordcount,2 -0,0,if,conjunction_lexical_wordcount,1 -0,0,altho while though then how,conjunction_lexical_wordcount,5 -0,0,when or,conjunction_lexical_wordcount,2 -0,0,if,conjunction_lexical_wordcount,1 -0,0,but however,conjunction_lexical_wordcount,2 -0,0,undoubtni,certainty_lexical_wordcount,1 -0,0,altogether truthzhf,certainty_lexical_wordcount,2 -0,0,distinctue definitiveeol commitmentflk forever,certainty_lexical_wordcount,4 -0,0,total essential,certainty_lexical_wordcount,2 -0,0,fundamentals completes guarantidjp,certainty_lexical_wordcount,3 -0,0,both add with,inclusive_lexical_wordcount,3 -0,0,around we along,inclusive_lexical_wordcount,3 -0,0,each with,inclusive_lexical_wordcount,2 -0,0,with inclusg come came around,inclusive_lexical_wordcount,5 -0,0,each around come,inclusive_lexical_wordcount,3 -0,0,nausen sensation brunchkjz,bio_lexical_wordcount,3 -0,0,butt saliverbwp,bio_lexical_wordcount,2 -0,0,palms,bio_lexical_wordcount,1 -0,0,liquoriole,bio_lexical_wordcount,1 -0,0,xanax prescriqd hand sodauce,bio_lexical_wordcount,4 -0,0,strivl master,achievement_lexical_wordcount,2 -0,0,originattvf solutionmuyho elitlxoup proficiengiy quittd,achievement_lexical_wordcount,5 -0,0,finalizuav best quitti capabfs,achievement_lexical_wordcount,4 -0,0,masters plans,achievement_lexical_wordcount,2 -0,0,strengthe successqfhs herovqw overconfidence,achievement_lexical_wordcount,4 -0,0,apparently,adverbs_lexical_wordcount,1 -0,0,so,adverbs_lexical_wordcount,1 -0,0,immediately generally very well truly,adverbs_lexical_wordcount,5 -0,0,rather instead here pushty,adverbs_lexical_wordcount,4 -0,0,instead,adverbs_lexical_wordcount,1 -0,0,phobii apprehensnmeyt,anxiety_lexical_wordcount,2 -0,0,obsesstusbg anguishuiy terrorkm,anxiety_lexical_wordcount,3 -0,0,restlesst tenseod feared overwhelmfvlxi,anxiety_lexical_wordcount,4 -0,0,timidfzbh stressetd,anxiety_lexical_wordcount,2 -0,0,apprehensrm dreadn,anxiety_lexical_wordcount,2 -0,0,oneself shes he she'll herself,third_person_lexical_wordcount,5 -0,0,shes he'd himself hes her,third_person_lexical_wordcount,5 -0,0,she'll,third_person_lexical_wordcount,1 -0,0,she'll her,third_person_lexical_wordcount,2 -0,0,she'll him she's hes he,third_person_lexical_wordcount,5 -0,0,havent haven't ought'nt wont,negation_lexical_wordcount,4 -0,0,needn't hasn't,negation_lexical_wordcount,2 -0,0,wouldnt,negation_lexical_wordcount,1 -0,0,nobodashm hasn't didnt,negation_lexical_wordcount,3 -0,0,hasn't never,negation_lexical_wordcount,2 -0,0,titty fuckerusz bitchnsl goddamomde hell,swear_lexical_wordcount,5 -0,0,sob fuckinoawys titty cuntq,swear_lexical_wordcount,4 -0,0,cuntn pisstkzme dicks butts,swear_lexical_wordcount,4 -0,0,fucks jeez sonofako crappy,swear_lexical_wordcount,4 -0,0,fucks butt heck,swear_lexical_wordcount,3 -0,0,urnj immortalwai,death_lexical_wordcount,2 -0,0,od bury demise tombd urnnig,death_lexical_wordcount,5 -0,0,demise,death_lexical_wordcount,1 -0,0,immortalyjedn embalmfqydb hearsepdk,death_lexical_wordcount,3 -0,0,ghostaw alive,death_lexical_wordcount,2 -0,0,amputu,health_lexical_wordcount,1 -0,0,nearsighted neurologhl toxv painly throbgvmhn,health_lexical_wordcount,5 -0,0,wash doselndu mono,health_lexical_wordcount,3 -0,0,ill,health_lexical_wordcount,1 -0,0,checkupfli burpzxevw scabo living ICU,health_lexical_wordcount,5 -0,0,orangemacis squaruei purplabnk,see_lexical_wordcount,3 -0,0,colourxml roundxgijb sees seen colorht,see_lexical_wordcount,5 -0,0,staring look yellowkyn triangqmpv,see_lexical_wordcount,4 -0,0,shiny lookerutn scannv look,see_lexical_wordcount,4 -0,0,scanni seen,see_lexical_wordcount,2 -0,0,facialrqth foot lipslt toe titties,body_lexical_wordcount,5 -0,0,toenailhtqe droolc,body_lexical_wordcount,2 -0,0,hip dick boobvw,body_lexical_wordcount,3 -0,0,slenderbmvq ass,body_lexical_wordcount,2 -0,0,nudeytmcb stomachltbw wake breastqyp eyewut,body_lexical_wordcount,5 -0,0,moms bro,family_lexical_wordcount,2 -0,0,nephewz wifevxmlj mom's parentuph,family_lexical_wordcount,4 -0,0,pa sons fatherhb,family_lexical_wordcount,3 -0,0,aunte sons grandkidywgxb exes ex,family_lexical_wordcount,5 -0,0,relatives husbandypoiz mommalqhxo,family_lexical_wordcount,3 -0,0,sickengwxku,negative_affect_lexical_wordcount,1 -0,0,hurtefdp lazieqxar impersonal,negative_affect_lexical_wordcount,3 -0,0,egotisy destroygj,negative_affect_lexical_wordcount,2 -0,0,unwelcomrfwd,negative_affect_lexical_wordcount,1 -0,0,jealoustemf unkind,negative_affect_lexical_wordcount,2 -0,0,significant else every section,quantifier_lexical_wordcount,4 -0,0,ton lotta,quantifier_lexical_wordcount,2 -0,0,either best greatest,quantifier_lexical_wordcount,3 -0,0,best,quantifier_lexical_wordcount,1 -0,0,singlufb rest fullmzf,quantifier_lexical_wordcount,3 -0,0,glad great charmbrwsd wins,positive_affect_lexical_wordcount,4 -0,0,generot helping sincerbucaj,positive_affect_lexical_wordcount,3 -0,0,freedswu adventursfk gently deliciouseuxl assurm,positive_affect_lexical_wordcount,5 -0,0,worshipstmjc soulmateeiya treat huggpo,positive_affect_lexical_wordcount,4 -0,0,grin wealthlg thrillzbrqf casual proudrqu,positive_affect_lexical_wordcount,5 -0,0,restructurucq,insight_lexical_wordcount,1 -0,0,know decidux recallwz seems solutionlxh,insight_lexical_wordcount,5 -0,0,wonder motivsc sensing secret,insight_lexical_wordcount,4 -0,0,believes,insight_lexical_wordcount,1 -0,0,suspectc infers,insight_lexical_wordcount,2 -0,0,man,humans_lexical_wordcount,1 -0,0,newbornl citizen'phtgi ladies,humans_lexical_wordcount,3 -0,0,girl's babies persons chicks,humans_lexical_wordcount,4 -0,0,infant,humans_lexical_wordcount,1 -0,0,ladies ma'am citizen,humans_lexical_wordcount,3 -0,0,hasn't makes describe believes I've,present_tense_lexical_wordcount,5 -0,0,gets how's,present_tense_lexical_wordcount,2 -0,0,has hopes admits,present_tense_lexical_wordcount,3 -0,0,let's,present_tense_lexical_wordcount,1 -0,0,suck wait aren't feels,present_tense_lexical_wordcount,4 -0,0,wouldnt gonna,future_tense_lexical_wordcount,2 -0,0,mustnt should shall,future_tense_lexical_wordcount,3 -0,0,must've,future_tense_lexical_wordcount,1 -0,0,must should it'll won't shall,future_tense_lexical_wordcount,5 -0,0,shouldve mustnt,future_tense_lexical_wordcount,2 -0,0,listened held loved cried changed,past_tense_lexical_wordcount,5 -0,0,sent sensed tried taken shouldve,past_tense_lexical_wordcount,5 -0,0,ate sucked tried,past_tense_lexical_wordcount,3 -0,0,ran described,past_tense_lexical_wordcount,2 -0,0,didn't,past_tense_lexical_wordcount,1 -0,0,post distanpiy,relative_lexical_wordcount,2 -0,0,go marchal updatmwi,relative_lexical_wordcount,3 -0,0,walking growing gianthy age,relative_lexical_wordcount,4 -0,0,initiatoxtwa follow,relative_lexical_wordcount,2 -0,0,hall bending widthxikw,relative_lexical_wordcount,3 -0,0,loverkfxo pornoiu,sexual_lexical_wordcount,2 -0,0,virgindtrl humpysbwe prudishybiq,sexual_lexical_wordcount,3 -0,0,virginc,sexual_lexical_wordcount,1 -0,0,fucks pubic gay,sexual_lexical_wordcount,3 -0,0,prostatijvda dick,sexual_lexical_wordcount,2 -0,0,curbijh boundlby,inhibition_lexical_wordcount,2 -0,0,deniaxi,inhibition_lexical_wordcount,1 -0,0,prudishxc deniabxp,inhibition_lexical_wordcount,2 -0,0,constrictimhr,inhibition_lexical_wordcount,1 -0,0,withholdyzaqb stops,inhibition_lexical_wordcount,2 -0,0,remorset ruinc grimwftle,sadness_lexical_wordcount,3 -0,0,discouragnepqi tragict devastatu,sadness_lexical_wordcount,3 -0,0,grief unimportant,sadness_lexical_wordcount,2 -0,0,miss yearnlkw whining tragickh pitiulpnv,sadness_lexical_wordcount,5 -0,0,miss regretzkbrc missed unhappj,sadness_lexical_wordcount,4 -0,0,weve son's,social_lexical_wordcount,2 -0,0,listenerqe girlfriendwsnya,social_lexical_wordcount,2 -0,0,hers,social_lexical_wordcount,1 -0,0,he'll sisterqjtfk,social_lexical_wordcount,2 -0,0,coworkertbpf mates he's mailing interrupm,social_lexical_wordcount,5 -0,0,somethingjmcpi noboda,indefinite_pronoun_lexical_wordcount,2 -0,0,somebodp somewhere itll who'll,indefinite_pronoun_lexical_wordcount,4 -0,0,that'd somethingosdqx,indefinite_pronoun_lexical_wordcount,2 -0,0,somethingp thatll those which someonecrhbd,indefinite_pronoun_lexical_wordcount,5 -0,0,it'll it'd,indefinite_pronoun_lexical_wordcount,2 -0,0,sinnzkc kosher qur'anpy,religion_lexical_wordcount,3 -0,0,mercy,religion_lexical_wordcount,1 -0,0,templefydxz hinduejs muhammsla lutheranwv ministerlnfts,religion_lexical_wordcount,5 -0,0,catholickd,religion_lexical_wordcount,1 -0,0,sikhc judaprfd muhammehcml sin,religion_lexical_wordcount,4 -0,0,laidoff tradejnx taxes freshmknd,work_lexical_wordcount,4 -0,0,incorprhq negotiatjf presentationomwfa,work_lexical_wordcount,3 -0,0,politics mda,work_lexical_wordcount,2 -0,0,revieww classes,work_lexical_wordcount,2 -0,0,masters,work_lexical_wordcount,1 -0,0,owes cashk bankpsiar checks kronlwik,money_lexical_wordcount,5 -0,0,dinarcsg businesszosw revenueocp costbjwta owe,money_lexical_wordcount,5 -0,0,euro auditors store spending,money_lexical_wordcount,4 -0,0,mortgpzvi overtime,money_lexical_wordcount,2 -0,0,bucks wagerfv,money_lexical_wordcount,2 -0,0,effectcaxgn,causation_lexical_wordcount,1 -0,0,leadmbhfe infer depends creatend,causation_lexical_wordcount,4 -0,0,depends,causation_lexical_wordcount,1 -0,0,deducgulp outcomecli affected hows producnbu,causation_lexical_wordcount,5 -0,0,solutionva launchvoap leadhbi provoku,causation_lexical_wordcount,4 -0,0,threatxre offencefhcog ludicrouslf,anger_lexical_wordcount,3 -0,0,enragoqusn,anger_lexical_wordcount,1 -0,0,sucks brutals sucked threatd destroyj,anger_lexical_wordcount,5 -0,0,sinister,anger_lexical_wordcount,1 -0,0,raping battliz warfareid defensjazn molestgv,anger_lexical_wordcount,5 -0,0,mine I've myself I'd I'll,first_person_singular_lexical_wordcount,5 -0,0,I'll I've,first_person_singular_lexical_wordcount,2 -0,0,myself my,first_person_singular_lexical_wordcount,2 -0,0,ive I'd,first_person_singular_lexical_wordcount,2 -0,0,myself I'm ive my I've,first_person_singular_lexical_wordcount,5 -0,0,rub hard warmlvye,feel_lexical_wordcount,3 -0,0,hardevtqef driegnk feels touchlzf,feel_lexical_wordcount,4 -0,0,leatherjcf pressed squeezul silkjn,feel_lexical_wordcount,4 -0,0,skin brushtasj rub colde caressi,feel_lexical_wordcount,5 -0,0,hottjmuo,feel_lexical_wordcount,1 -0,0,mysterp ambigun,tentativeness_lexical_wordcount,2 -0,0,most wondered depend alot vary,tentativeness_lexical_wordcount,5 -0,0,fairly lucks unresolvn hesitaq option,tentativeness_lexical_wordcount,5 -0,0,fuzznaxg hypotheticoqwzy barely,tentativeness_lexical_wordcount,3 -0,0,depend indetermingifjl randomitf hypotheticvzkg supposed,tentativeness_lexical_wordcount,5 -0,0,exclujvy,exclusive_lexical_wordcount,1 -0,0,either except if somethingfxdq sometime,exclusive_lexical_wordcount,5 -0,0,versus,exclusive_lexical_wordcount,1 -0,0,but exclusxklz except or,exclusive_lexical_wordcount,4 -0,0,sometime,exclusive_lexical_wordcount,1 -0,0,youre wished thank went,verbs_lexical_wordcount,4 -0,0,meant hoped lost,verbs_lexical_wordcount,3 -0,0,ran carry showed used,verbs_lexical_wordcount,4 -0,0,theres care cannot made,verbs_lexical_wordcount,4 -0,0,affected misses theyd kept thatd,verbs_lexical_wordcount,5 -0,0,gfjgevb,friends_lexical_wordcount,1 -0,0,exgirll,friends_lexical_wordcount,1 -0,0,mates,friends_lexical_wordcount,1 -0,0,mate loveru mates buddyv,friends_lexical_wordcount,4 -0,0,neighbord partnerzcvdj roomatel girlfriendt gft,friends_lexical_wordcount,5 -0,0,a an alot,article_lexical_wordcount,3 -0,0,a an,article_lexical_wordcount,2 -0,0,a an alot,article_lexical_wordcount,3 -0,0,the an a alot,article_lexical_wordcount,4 -0,0,alot,article_lexical_wordcount,1 -0,0,oh yes I believe,argue_lexical_wordcount,3 -0,0,u mean and really,argue_lexical_wordcount,3 -0,0,cause no I know and,argue_lexical_wordcount,4 -0,0,and I think actually yes well,argue_lexical_wordcount,5 -0,0,so,argue_lexical_wordcount,1 -0,0,wouldve whod you've mustn't,auxiliary_verbs_lexical_wordcount,4 -0,0,let youve itd ought,auxiliary_verbs_lexical_wordcount,4 -0,0,can don't theyre wasn't,auxiliary_verbs_lexical_wordcount,4 -0,0,hes must'nt wont did mustn't,auxiliary_verbs_lexical_wordcount,5 -0,0,shan't theyve oughtve becomes done,auxiliary_verbs_lexical_wordcount,5 -0,0,meaningi all wanted determining,cognitive_mech_lexical_wordcount,4 -0,0,appearing suppresshvw proof changes,cognitive_mech_lexical_wordcount,4 -0,0,rearrangbqlg randomuer containn deducczr practically,cognitive_mech_lexical_wordcount,5 -0,0,occasionalszxg hazy requirj,cognitive_mech_lexical_wordcount,3 -0,0,repressydvml,cognitive_mech_lexical_wordcount,1 -0,0,until,preposition_lexical_wordcount,1 -0,0,along ahead,preposition_lexical_wordcount,2 -0,0,below under thru,preposition_lexical_wordcount,3 -0,0,except insides towardkhyrs between beside,preposition_lexical_wordcount,5 -0,0,without out about,preposition_lexical_wordcount,3 -0,0,let's,first_person_plural_lexical_wordcount,1 -0,0,we'd let's lets,first_person_plural_lexical_wordcount,3 -0,0,our lets,first_person_plural_lexical_wordcount,2 -0,0,we've,first_person_plural_lexical_wordcount,1 -0,0,ours we'd weve ourselves let's,first_person_plural_lexical_wordcount,5 -0,0,drily,percept_lexical_wordcount,1 -0,0,grabwktxr,percept_lexical_wordcount,1 -0,0,savourzw redness,percept_lexical_wordcount,2 -0,0,speaking,percept_lexical_wordcount,1 -0,0,souriau tang,percept_lexical_wordcount,2 -0,0,thine yall,second_person_lexical_wordcount,2 -0,0,you're youd,second_person_lexical_wordcount,2 -0,0,y'all you'd thine you're,second_person_lexical_wordcount,4 -0,0,thee thine youre yours,second_person_lexical_wordcount,4 -0,0,ye you,second_person_lexical_wordcount,2 -0,0,mustnt hope mistakwzl hoping,discrepancies_lexical_wordcount,4 -0,0,would've problemo need lacksuexg expectt,discrepancies_lexical_wordcount,5 -0,0,couldnt hopeful should,discrepancies_lexical_wordcount,3 -0,0,desirva,discrepancies_lexical_wordcount,1 -0,0,wishes wishing must've need,discrepancies_lexical_wordcount,4 -0,0,noises thundero,hear_lexical_wordcount,2 -0,0,thunderq inaudibln sang hears,hear_lexical_wordcount,4 -0,0,loudvh sang hushmqplh speak,hear_lexical_wordcount,4 -0,0,heard speakertphv shoutiaem audiblbohi,hear_lexical_wordcount,4 -0,0,sang whispervhxqk,hear_lexical_wordcount,2 -0,0,lawnxdi doghousemilk residenlwfxa condo vacuumk,home_lexical_wordcount,5 -0,0,lawnjr residencpbs neighboregax,home_lexical_wordcount,3 -0,0,doghouseeastb roomiepuma,home_lexical_wordcount,2 -0,0,porch cleanhwe condo,home_lexical_wordcount,3 -0,0,maidqyldk bedroomox patioquf,home_lexical_wordcount,3 -0,0,whether nor then,conjunction_lexical_wordcount,3 -0,0,because if then so,conjunction_lexical_wordcount,4 -0,0,whereas while,conjunction_lexical_wordcount,2 -0,0,plus until,conjunction_lexical_wordcount,2 -0,0,when how although though,conjunction_lexical_wordcount,4 -0,0,defined essential undoubts completed,certainty_lexical_wordcount,4 -0,0,wholly distinctcx unquestionj,certainty_lexical_wordcount,3 -0,0,altogether precisjawd exactnqhfl,certainty_lexical_wordcount,3 -0,0,exactofn invariabr unquestionqzj defined,certainty_lexical_wordcount,4 -0,0,completes inevitabx undoubtgyzl,certainty_lexical_wordcount,3 -0,0,came,inclusive_lexical_wordcount,1 -0,0,around come open,inclusive_lexical_wordcount,3 -0,0,come,inclusive_lexical_wordcount,1 -0,0,add came come we,inclusive_lexical_wordcount,4 -0,0,inside with both,inclusive_lexical_wordcount,3 -0,0,fattsc faintdlseh,bio_lexical_wordcount,2 -0,0,syndromeagxe,bio_lexical_wordcount,1 -0,0,digestp musclephj skinnijsv healing,bio_lexical_wordcount,4 -0,0,penisygbjp,bio_lexical_wordcount,1 -0,0,veggiecla,bio_lexical_wordcount,1 -0,0,unproducet importanmqdw resourcefulcamzd,achievement_lexical_wordcount,3 -0,0,concludwo ranking masters lose strongm,achievement_lexical_wordcount,5 -0,0,loserxc,achievement_lexical_wordcount,1 -0,0,effortcxbe first triumphujryl masterfulvq irresponsiblet,achievement_lexical_wordcount,5 -0,0,confident abilitbdz endeavafre defeatxjq determined,achievement_lexical_wordcount,5 -0,0,mostly now whenever too primarily,adverbs_lexical_wordcount,5 -0,0,probably back perhaps here mostly,adverbs_lexical_wordcount,5 -0,0,somehow apparently how yet here,adverbs_lexical_wordcount,5 -0,0,now eventually soon how completely,adverbs_lexical_wordcount,5 -0,0,generally well such seriously here,adverbs_lexical_wordcount,5 -0,0,overwhelmryjd strainf shakewm,anxiety_lexical_wordcount,3 -0,0,uncertainve feared confusmb,anxiety_lexical_wordcount,3 -0,0,franticivctu stuns shook uncertainu,anxiety_lexical_wordcount,4 -0,0,shakiihxd frightixu shook stunned misersjne,anxiety_lexical_wordcount,5 -0,0,alarmkzu tremblwzocs stuns,anxiety_lexical_wordcount,3 -0,0,she'll he,third_person_lexical_wordcount,2 -0,0,him her,third_person_lexical_wordcount,2 -0,0,his,third_person_lexical_wordcount,1 -0,0,her she's hers,third_person_lexical_wordcount,3 -0,0,herself hes he's,third_person_lexical_wordcount,3 -0,0,oughtn't don't wouldnt,negation_lexical_wordcount,3 -0,0,shouldn't doesnt didnt nowhere should'nt,negation_lexical_wordcount,5 -0,0,arent shouldnt isn't,negation_lexical_wordcount,3 -0,0,nope,negation_lexical_wordcount,1 -0,0,need'nt not negatlpji wouldn't,negation_lexical_wordcount,4 -0,0,dang pussyah,swear_lexical_wordcount,2 -0,0,hell dumbpbzvd bitchkvyuz butt homo,swear_lexical_wordcount,5 -0,0,fuck shitq cock pisslkx,swear_lexical_wordcount,4 -0,0,sob queersgm pussyeqru fucks,swear_lexical_wordcount,4 -0,0,mofo prickyj dick niggerjvw,swear_lexical_wordcount,4 -0,0,embalmjt oded gravevwhfi tombetp,death_lexical_wordcount,4 -0,0,drownksti,death_lexical_wordcount,1 -0,0,lynchxafto war,death_lexical_wordcount,2 -0,0,dies bereavemfhcn,death_lexical_wordcount,2 -0,0,genocidgjoau grief morticianbspv,death_lexical_wordcount,3 -0,0,asthmanmc tumofwvj chokkohz physicianuqvwr,health_lexical_wordcount,4 -0,0,nearsighted throbj anorexiky tinglliqf,health_lexical_wordcount,4 -0,0,throbpqym woundzlkw gynobqovn,health_lexical_wordcount,3 -0,0,therapdkzr healed OCD,health_lexical_wordcount,3 -0,0,living coronard,health_lexical_wordcount,2 -0,0,scannrq circle reddeyo glowx,see_lexical_wordcount,4 -0,0,sunshingwv sees clickhbiyp scannmbgl eying,see_lexical_wordcount,5 -0,0,eyeqblh rectangypwos triangdg seer looked,see_lexical_wordcount,5 -0,0,columnxvs sightsue,see_lexical_wordcount,2 -0,0,whitishk,see_lexical_wordcount,1 -0,0,bone belly nervew,body_lexical_wordcount,3 -0,0,skin palms breathdcafq,body_lexical_wordcount,3 -0,0,brainz bones,body_lexical_wordcount,2 -0,0,rashnut tit itchwght kneenjk,body_lexical_wordcount,4 -0,0,lungr facialt slenderi spine,body_lexical_wordcount,4 -0,0,husbandyabx,family_lexical_wordcount,1 -0,0,marrieboagv brotherrhda,family_lexical_wordcount,2 -0,0,exhusbanda granddaursubf,family_lexical_wordcount,2 -0,0,familiesc,family_lexical_wordcount,1 -0,0,cousinbzmwh marriexrzvf,family_lexical_wordcount,2 -0,0,longingjhbn,negative_affect_lexical_wordcount,1 -0,0,lamefpbv disadvantagenxtql,negative_affect_lexical_wordcount,2 -0,0,insincermy remorseoeia,negative_affect_lexical_wordcount,2 -0,0,difficultna jaded wars vanity,negative_affect_lexical_wordcount,4 -0,0,difficultnmril warring vulnerabc shitzv,negative_affect_lexical_wordcount,4 -0,0,tons greater simple,quantifier_lexical_wordcount,3 -0,0,extent,quantifier_lexical_wordcount,1 -0,0,mucho much section lotsa extremely,quantifier_lexical_wordcount,5 -0,0,ton piecg page differenceb whole,quantifier_lexical_wordcount,5 -0,0,else,quantifier_lexical_wordcount,1 -0,0,alrightdo,positive_affect_lexical_wordcount,1 -0,0,helperhnx sunny,positive_affect_lexical_wordcount,2 -0,0,complimentjlbhe convincfthqs graces,positive_affect_lexical_wordcount,3 -0,0,lucks romanczk praisyvpch safelmgx hehp,positive_affect_lexical_wordcount,5 -0,0,talentv interestuthxn,positive_affect_lexical_wordcount,2 -0,0,reasonpulei meaningidwf,insight_lexical_wordcount,2 -0,0,seem questiontmyhc reorganitkgar,insight_lexical_wordcount,3 -0,0,sense,insight_lexical_wordcount,1 -0,0,wonders,insight_lexical_wordcount,1 -0,0,explaining rationallpfg appreciate,insight_lexical_wordcount,3 -0,0,man,humans_lexical_wordcount,1 -0,0,girlshfsio adults,humans_lexical_wordcount,2 -0,0,child,humans_lexical_wordcount,1 -0,0,citizen,humans_lexical_wordcount,1 -0,0,ma'am men'bldt self femalejlcvo babeae,humans_lexical_wordcount,5 -0,0,hears,present_tense_lexical_wordcount,1 -0,0,brings thats doesn't whats,present_tense_lexical_wordcount,4 -0,0,goes start they're,present_tense_lexical_wordcount,3 -0,0,describes havent dislikes,present_tense_lexical_wordcount,3 -0,0,knows believe listens,present_tense_lexical_wordcount,3 -0,0,mustnt must must'nt shouldnt you'll,future_tense_lexical_wordcount,5 -0,0,ought'nt,future_tense_lexical_wordcount,1 -0,0,thatll wouldve should'nt gonna,future_tense_lexical_wordcount,4 -0,0,that'll won't I'll,future_tense_lexical_wordcount,3 -0,0,who'll should'nt,future_tense_lexical_wordcount,2 -0,0,hated went wondered appeared,past_tense_lexical_wordcount,4 -0,0,ate,past_tense_lexical_wordcount,1 -0,0,disliked lost described spent,past_tense_lexical_wordcount,4 -0,0,ate,past_tense_lexical_wordcount,1 -0,0,forgote cared believed,past_tense_lexical_wordcount,3 -0,0,awhile immediately outerki,relative_lexical_wordcount,3 -0,0,perpetualp internalltsem tiniest,relative_lexical_wordcount,3 -0,0,right immediateness fademl finishykxwt,relative_lexical_wordcount,4 -0,0,corners old over,relative_lexical_wordcount,3 -0,0,fit approachjuzeb,relative_lexical_wordcount,2 -0,0,erectile condom pornfzqh fucks,sexual_lexical_wordcount,4 -0,0,fuckinc asses condom queerduvk,sexual_lexical_wordcount,4 -0,0,pregnange erectionux,sexual_lexical_wordcount,2 -0,0,orgasmt sexw chlamydia gay,sexual_lexical_wordcount,4 -0,0,rapistph ovarsg tits,sexual_lexical_wordcount,3 -0,0,withheld defencjtr,inhibition_lexical_wordcount,2 -0,0,hesitaz tightq halthvc,inhibition_lexical_wordcount,3 -0,0,protectab securulxeo interferhvrx deniaanhcy restraindrv,inhibition_lexical_wordcount,5 -0,0,waits,inhibition_lexical_wordcount,1 -0,0,controlx waited tidy,inhibition_lexical_wordcount,3 -0,0,defeats,sadness_lexical_wordcount,1 -0,0,hopelesspkm heartbrokekible cried loses resigne,sadness_lexical_wordcount,5 -0,0,whining sadness cry cried disheartengzeaq,sadness_lexical_wordcount,5 -0,0,sadly damagbntc pessimisrc,sadness_lexical_wordcount,3 -0,0,hopelessa dissatisfcl fatigucuvjd disillusionqt isolatg,sadness_lexical_wordcount,5 -0,0,assemblkd meet band guyawg kid,social_lexical_wordcount,5 -0,0,help excusk peoplelnm organizho yall,social_lexical_wordcount,5 -0,0,sons,social_lexical_wordcount,1 -0,0,his participanteir,social_lexical_wordcount,2 -0,0,grandpap whom mailerut,social_lexical_wordcount,3 -0,0,this that it'd,indefinite_pronoun_lexical_wordcount,3 -0,0,these anything thatll everybodhn it'll,indefinite_pronoun_lexical_wordcount,5 -0,0,noboddup whats,indefinite_pronoun_lexical_wordcount,2 -0,0,it's who'd thats it whats,indefinite_pronoun_lexical_wordcount,5 -0,0,anything wholl these,indefinite_pronoun_lexical_wordcount,3 -0,0,karma salvation orthodoxfdy rosaries sect,religion_lexical_wordcount,5 -0,0,rosary jesuitgsabe hell,religion_lexical_wordcount,3 -0,0,hell,religion_lexical_wordcount,1 -0,0,christianwq muhammyprqh piety sects,religion_lexical_wordcount,4 -0,0,sunni scripturvko templeme salvation,religion_lexical_wordcount,4 -0,0,credentialrs com absentp,work_lexical_wordcount,3 -0,0,mfg reportsuro commercsjezh collabw,work_lexical_wordcount,4 -0,0,outsourcrfndl,work_lexical_wordcount,1 -0,0,transfergdnu grad,work_lexical_wordcount,2 -0,0,econgv goalg,work_lexical_wordcount,2 -0,0,cashlf,money_lexical_wordcount,1 -0,0,debti shop consumerzae inheritfkyv,money_lexical_wordcount,4 -0,0,stocks,money_lexical_wordcount,1 -0,0,taxaxv cheapi,money_lexical_wordcount,2 -0,0,incomegfl bet auditing taxansjbf,money_lexical_wordcount,4 -0,0,thereforrnsq,causation_lexical_wordcount,1 -0,0,origins,causation_lexical_wordcount,1 -0,0,motivnt launchvt,causation_lexical_wordcount,2 -0,0,makes forcev using obedienwayd,causation_lexical_wordcount,4 -0,0,compliance obedienlpijv pick,causation_lexical_wordcount,3 -0,0,sucked arrogant ferocwv,anger_lexical_wordcount,3 -0,0,punishx enragvbj contemptawb,anger_lexical_wordcount,3 -0,0,maniacxo pissmygt rebelmp,anger_lexical_wordcount,3 -0,0,stupidncwg hellish paranoilbock warring,anger_lexical_wordcount,4 -0,0,naga angrwmnl tantrumsv,anger_lexical_wordcount,3 -0,0,ive I've,first_person_singular_lexical_wordcount,2 -0,0,Id,first_person_singular_lexical_wordcount,1 -0,0,Id myself,first_person_singular_lexical_wordcount,2 -0,0,I'd,first_person_singular_lexical_wordcount,1 -0,0,i,first_person_singular_lexical_wordcount,1 -0,0,weightliftd hand driemau drily,feel_lexical_wordcount,4 -0,0,grippfipun feelingwkaf thinnajy,feel_lexical_wordcount,3 -0,0,skin'men,feel_lexical_wordcount,1 -0,0,weight press hot thin silkvr,feel_lexical_wordcount,5 -0,0,skin'h,feel_lexical_wordcount,1 -0,0,assumbvd seemed usually,tentativeness_lexical_wordcount,3 -0,0,option,tentativeness_lexical_wordcount,1 -0,0,someonesyc wonders theorhe,tentativeness_lexical_wordcount,3 -0,0,spose hardly seemed alot,tentativeness_lexical_wordcount,4 -0,0,often appearing,tentativeness_lexical_wordcount,2 -0,0,either except sometime,exclusive_lexical_wordcount,3 -0,0,without,exclusive_lexical_wordcount,1 -0,0,really but whether,exclusive_lexical_wordcount,3 -0,0,vs,exclusive_lexical_wordcount,1 -0,0,if,exclusive_lexical_wordcount,1 -0,0,begin supported,verbs_lexical_wordcount,2 -0,0,begin held who's describe how's,verbs_lexical_wordcount,5 -0,0,takes,verbs_lexical_wordcount,1 -0,0,happened saw mustnt brings,verbs_lexical_wordcount,4 -0,0,slept took waited,verbs_lexical_wordcount,3 -0,0,pals bud amigodyzg mate's girlfriendur,friends_lexical_wordcount,5 -0,0,mates,friends_lexical_wordcount,1 -0,0,neighborwtey bftxuv comradq,friends_lexical_wordcount,3 -0,0,colleaguejo buddiesef,friends_lexical_wordcount,2 -0,0,bfbfi,friends_lexical_wordcount,1 -0,0,an a alot the,article_lexical_wordcount,4 -0,0,the,article_lexical_wordcount,1 -0,0,an,article_lexical_wordcount,1 -0,0,an the,article_lexical_wordcount,2 -0,0,an,article_lexical_wordcount,1 -0,0,u know no,argue_lexical_wordcount,2 -0,0,really you know I think,argue_lexical_wordcount,3 -0,0,really I believe,argue_lexical_wordcount,2 -0,0,cause,argue_lexical_wordcount,1 -0,0,I know,argue_lexical_wordcount,1 -0,0,you'd could,auxiliary_verbs_lexical_wordcount,2 -0,0,couldnt isn't,auxiliary_verbs_lexical_wordcount,2 -0,0,oughta had be what's,auxiliary_verbs_lexical_wordcount,4 -0,0,be shant itll,auxiliary_verbs_lexical_wordcount,3 -0,0,ain't couldnt,auxiliary_verbs_lexical_wordcount,2 -0,0,avertv,cognitive_mech_lexical_wordcount,1 -0,0,yearnqgjth,cognitive_mech_lexical_wordcount,1 -0,0,infer tentativwc wouldn't,cognitive_mech_lexical_wordcount,3 -0,0,around commit banned fundamental,cognitive_mech_lexical_wordcount,4 -0,0,obedienoki solutionhk,cognitive_mech_lexical_wordcount,2 -0,0,around plus,preposition_lexical_wordcount,2 -0,0,onto,preposition_lexical_wordcount,1 -0,0,insides in behind out,preposition_lexical_wordcount,4 -0,0,insides amongzekb unto by than,preposition_lexical_wordcount,5 -0,0,across above about without,preposition_lexical_wordcount,4 -0,0,we'd us our weve,first_person_plural_lexical_wordcount,4 -0,0,we'd we've weve ourselves we,first_person_plural_lexical_wordcount,5 -0,0,we've we're lets,first_person_plural_lexical_wordcount,3 -0,0,ourselves,first_person_plural_lexical_wordcount,1 -0,0,us our we'll let's,first_person_plural_lexical_wordcount,4 -0,0,greyiyck delectabliktz,percept_lexical_wordcount,2 -0,0,screen sand,percept_lexical_wordcount,2 -0,0,sweetness drieqs deoders,percept_lexical_wordcount,3 -0,0,coldedrm,percept_lexical_wordcount,1 -0,0,hear caramelzjw wetly tonguel,percept_lexical_wordcount,4 -0,0,y'all youd you're you'll,second_person_lexical_wordcount,4 -0,0,u thine,second_person_lexical_wordcount,2 -0,0,yall yours u your thoust,second_person_lexical_wordcount,5 -0,0,yall you've youll thee,second_person_lexical_wordcount,4 -0,0,thine you ye,second_person_lexical_wordcount,3 -0,0,responsibly evocative faithfully valiantly illustrious,positive_words_lexical_wordcount,5 -0,0,imaculate vivid likable enjoyable succeed,positive_words_lexical_wordcount,5 -0,0,smitten sharpest rightfully unreal,positive_words_lexical_wordcount,4 -0,0,reaffirmation joy goood speedy self-sufficient,positive_words_lexical_wordcount,5 -0,0,tantalize energize gusto win,positive_words_lexical_wordcount,4 -0,0,we our i me,first_person_lexical_wordcount,4 -0,0,ourselves,first_person_lexical_wordcount,1 -0,0,myself,first_person_lexical_wordcount,1 -0,0,lets my i,first_person_lexical_wordcount,3 -0,0,our,first_person_lexical_wordcount,1 -0,0,but,nltk_english_stopwords_lexical_wordcount,1 -0,0,were was your,nltk_english_stopwords_lexical_wordcount,3 -0,0,any shan it is,nltk_english_stopwords_lexical_wordcount,4 -0,0,our,nltk_english_stopwords_lexical_wordcount,1 -0,0,because an after other,nltk_english_stopwords_lexical_wordcount,4 -0,0,probably,hedge_words_lexical_wordcount,1 -0,0,maybe I guess possibly sort of a little,hedge_words_lexical_wordcount,5 -0,0,a little possibly I think sort of probably,hedge_words_lexical_wordcount,5 -0,0,probably sort of,hedge_words_lexical_wordcount,2 -0,0,I think,hedge_words_lexical_wordcount,1 -0,0,I love dogs,positive_bert,0.932 -0,0,I love dogs!!!,positive_bert,0.980 -0,0,I love dogs,negative_bert,0.012 -0,0,I love dogs!!!,negative_bert,0.004 -0,0,This is relatively neutral,neutral_bert,0.470 -0,0,This is relatively neutral,positive_bert,0.505 -0,0,This is relatively neutral...,neutral_bert,0.492 -0,0,What the heck is going on,negative_bert,0.541 -0,0,What the heck is going on??,negative_bert,0.730 -0,0,!!!,positive_bert,0.917 -0,0,.,neutral_bert,0.577 -0,0,???,neutral_bert,0.713 -0,0,,num_chars,0 -0,0,a,num_chars,1 -0,0,ab,num_chars,2 -0,0,abc,num_chars,3 -0,0,abcd,num_chars,4 -0,0,abcde,num_chars,5 -0,0,abcdef,num_chars,6 -0,1,first,num_messages,1 -0,0,Who is this,num_question_naive,1 -0,0,Who is this. Why is this,num_question_naive,2 -0,0,Who what when where why is this,num_question_naive,1 -0,0,Who is this?,num_question_naive,1 -A,1,able am are,function_word_accommodation,0 -A,2,able am are hello,function_word_accommodation,3 -A,3,able am hello,function_word_accommodation,2 -A,2,able get got,function_word_accommodation,1 -A,5,get,function_word_accommodation,1 -B,1,able am are,content_word_accommodation,0 -B,2,able am are hello,content_word_accommodation,0 -B,3,able am hello yoyo,content_word_accommodation_per_conv,0.3333333 -B,2,hello yoyo,content_word_accommodation_per_conv,0.8333333 -C,1,i i i,first_pronouns_proportion,1 -C,2,i i taco taco,first_pronouns_proportion,0.5 -C,3,.,first_pronouns_proportion,0 -D,1,I went to the store,info_exchange_zscore_conversation,0 -D,2,Bought some groceries for dinner,info_exchange_zscore_conversation,1.2247 -D,3,It's raining today,info_exchange_zscore_conversation,-1.2247 -E,1,I sort of like this,hedge_naive,1 -E,2,I guess this is a little awesome,hedge_naive,1 -E,3,It's raining today,hedge_naive,0 -F,1,what??,NTRI,1 -F,3,sorry excuse me what's your name again?,NTRI,1 -F,1,huh?,NTRI,1 -F,3,pardon?,NTRI,1 -F,3,pardon,NTRI,0 -F,3,say what again?,NTRI,1 -F,3,say again?,NTRI,1 -F,3,say again,NTRI,1 -F,3,what's that?,NTRI,1 -F,3,what is that,NTRI,1 -F,2,this is not funny,NTRI,0 -G,1,what is going on,word_TTR,1 -G,3,what what,word_TTR,0.5 -G,2,what what is that,word_TTR,0.75 -H,1,fantastic difficulty,dale_chall_score,19.5257 -H,3,discover direction different,dale_chall_score,0.1488 -H,3,trying quote random,dale_chall_score,0.1488 -H,3,erase eraser errand every even dig dim dime dine computer,dale_chall_score,5.7115 -H,2,even this is magnificent!,dale_chall_score,7.7824 -H,4,even this is magnificent! even this is magnificent!,dale_chall_score,7.7824 -H,1,fantastic difficulty,dale_chall_classification,difficult -H,3,trying quote random,dale_chall_classification,easy -H,3,erase eraser errand every even dig dim dime dine computer,dale_chall_classification,medium -H,3,discover direction different,dale_chall_classification,easy -H,4,even this is magnificent! even this is magnificent!,dale_chall_classification,difficult -I,1,I am enjoying the weather today!,positivity_zscore_conversation,0.855868 -I,2,Likewise it's beautiful.,positivity_zscore_conversation,0.8156 -I,3,I'm not a fan of the rain.,positivity_zscore_conversation,-1.2577 -I,1,I think it's enchanting.,positivity_zscore_conversation,0.7766 -I,3,Agree to disagree.,positivity_zscore_conversation,-1.19044 -J,1,This conversation is more neutral.,positivity_zscore_conversation,-0.002217 -J,2,How are you doing?,positivity_zscore_conversation,-0.443621 -J,3,I am mainly studying today.,positivity_zscore_conversation,-0.704912 -J,1,Anything fun planned?,positivity_zscore_conversation,1.925224 -J,3,Mostly a trip to the library.,positivity_zscore_conversation,-0.774473 -K,1,This is the same text.,positivity_zscore_conversation, -K,1,This is the same text.,positivity_zscore_conversation, -K,1,This is the same text.,positivity_zscore_conversation, -K,1,This is the same text.,positivity_zscore_conversation, +conversation_num,speaker_nickname,message,expected_column,expected_value +1,A,Hello I like fish.,num_words,4 +1,B,This sentence has five words.,num_words,5 +2,A,Hello??,num_words,1 +2,A,1234,num_words,1 +2,B,Is 4 a word?,num_words,4 +3,A,.,num_words,0 +4,test_A,"HELLO WORLD, THIS IS A TEST. hi HI. hi HI hi HI""",num_all_caps,9 +4,test_B,ONE TWO THREE. four five six. sEvEn EiGhT nInE.,num_all_caps,3 +4,test_A,Check out this [link](https://example.com) and this one http://example.org,num_links,2 +4,test_B,I like google.com and wikipedia.org but not amazon.com,num_links,3 +4,test_A,why don't you read everything at https://www.example.com and https://www.example.org and https://www.example.net and https://www.example.ca and https://www.example.co.uk,num_links,5 +4,test_B,"why don't you read everything at +- https://www.example.com +- https://www.example.org +- https://www.example.net +- https://www.example.ca +- https://www.example.co.uk",num_links,5 +4,test_A,"Hello u/user1 and u/user2, hi hi hi?",num_reddit_users,2 +4,test_B,I don't like u/user_1_test but I like u/user2Test,num_reddit_users,2 +4,test_A,"This is **bold**, *italics*, and this is not. This is ***bolded and italicized***",num_emphasis,3 +4,test_B,This is **uneven* in terms of *the emphasis**,num_emphasis,2 +4,test_A,* item 1\n* item 2\n- item 3,num_bullet_points,3 +4,test_B,"Here are all my arguments: +- point 1 +- point 2 +- point 3 +- point 4 is super long and takes up multiple lines point 4 is super long and takes up multiple lines point 4 is super long and takes up multiple lines point 4 is super long and takes up multiple lines point 4 is super long and takes up multiple lines point 4 is super long and takes up multiple lines point 4 is super long and takes up multiple lines point 4 is super long and takes up multiple lines point 4 is super long and takes up multiple lines point 4 is super long and takes up multiple lines point 4 is super long and takes up multiple lines",num_bullet_points,4 +4,test_A,1. First\n2. Second\n3. Third,num_numbered_points,3 +4,test_B,This is the first line.\nThis is the second line.\nThis is the third line.,num_line_breaks,3 +4,test_A,"I have a line + + + + +here is a new line + + +here is a third line",num_line_breaks,3 +4,test_B,this is a line with\rA different kind of return value\rUsing carriage return instead of the newline character,num_line_breaks,3 +4,test_A,"""This is a quote."" She said, ""Here's another.""",num_quotes,2 +4,test_B,"""You miss 100% of the shots you don't take"" -- Wayne Gretzky",num_quotes,1 +4,test_A,"""I can't believe you use single quotes to quote people,"" she said. ""Well, he replied, 'sometimes single quotes are useful when you nest quotes inside other quotes,' according to my English teacher"" Then she said: 'okay'",num_quotes,4 +4,test_B,> Quoting someone else\nThis is my reply.,num_block_quote_responses,1 +4,test_A,> Quoting someone else\nThis is my reply.,num_block_quote_responses,1 +4,test_B,>>>> This is a quote but I went overboard with the carat character,num_block_quote_responses,1 +4,test_A,>> This is one where I put too many of the gt's,num_block_quote_responses,1 +4,test_B,"> Hello! +Goodbye!",num_block_quote_responses,1 +4,test_B,"> here I am making a quote +I respond to it +> I quote again +I respond to that too",num_block_quote_responses,2 +4,test_A,Well... I'm not sure... Maybe...,num_ellipses,3 +4,test_B,hm..what if I only use two periods.............or many periods............,num_ellipses,2 +4,test_B,This is a sentence (with some text in parentheses).,num_parentheses,1 +4,test_A,"""Sure,"" I said confidently (thiking to myself: no way!) This was definitely (not) one of my best moments.",num_parentheses,2 +4,test_B,(((((these parentheses are not properly closed.),num_parentheses,1 +4,test_B,((there are multiple parentheses here)),num_parentheses,2 +4,test_A,((1+(1+3+4)^2)+7+(9+8)),num_parentheses,4 +5,test1,I think that I think that I think,certainty_rocklage,4.5 +5,test2,I am a little confused,certainty_rocklage,2.47 +5,test2,I don't really know the answer,certainty_rocklage,1.33 +5,test3,I am sure that this is correct,certainty_rocklage,8.02 +5,test1,I am fairly certain in my response,certainty_rocklage,8.28 +5,test2,This is without a doubt the best movie I have ever seen,certainty_rocklage,4.5 +5,test2,I am not sure about how to how to approximately handle this,certainty_rocklage,2.69 +5,test3,I believe that he is guilty but I am not very certain,certainty_rocklage,6.56 +5,test1,I an open to you changing my mind on this issue,certainty_rocklage,4.5 +5,test2,I don't think the guy is the a$$hole. Thoughts?,certainty_rocklage,5.44 +5,test2,So who thinks the guy is an ass for asking his mother in law to learn english,certainty_rocklage,4.5 +5,test3,"I think that this person is not an asshole because, according to him, he was very polite while approaching the issue",certainty_rocklage,6.037 +5,test1,I can see how the family is upset because they feel the mother was disrespected but I can also understand the guy's feelings. Why should he have to work as interpreter for his mother in law?,certainty_rocklage,4.5 +5,test2,"Yes, I think his feeling makes sense to me to. Who doesn't want to be independent.",certainty_rocklage,4.89 +5,test2,I was conflicted because I could understand his frustration however I feel he should have maybe discussed strategies with how to approach the mother in law with his wife first.,certainty_rocklage,4.684 +5,test3,His MIL has been here for 8 years. You would think she'd pick up some English by now.,certainty_rocklage,4.5 +5,test1,I think he had every right to want to help his mother in law,certainty_rocklage,4.28 +5,test2,I also agree with culturedCow,certainty_rocklage,4.5 +5,test2,"I don't think he's an asshole. I think his request is reasonable. If you go to live in a foreign country, you should learn the language.",certainty_rocklage,5.125 +5,test3,"I think the guy is an asshole because for all his talk about how easy it is to use resources to learn a language, he didn't take the time to research WHY some people do not.",certainty_rocklage,5.505 +5,test1,I think he also tried to utilize other resources such as language learning apps to help her learn,certainty_rocklage,4.28 +5,test2,"I think also he needs to understand that language learning is not the same for everyone, not everyone has the same capacity to learn new languages quickly.",certainty_rocklage,6.09 +5,test2,"Maybe she does have a problem with learning languages, but she could at least try.",certainty_rocklage,3.79 +5,test3,After the edit he done it made it sound like he really loves his family,certainty_rocklage,6.175 +5,test1,"I don't think the guy is wrong in asking her to learn more english being that she lives in America, but he has to understand she is older and may not have the patience or capacity to learn a lot of english.",certainty_rocklage,5.472 +5,test2,"Learning a second language is easiest when you're a child for a reason. Your brain is wired differently then, which makes it easier.",certainty_rocklage,5.4 +5,test2,I think he tried to help her.� He gave her resources to use and she apparently didn't use them.,certainty_rocklage,4.32 +1,A,hello,Hello_receptiveness_yeomans,1 +1,B,So how should we answer this,Token_count_receptiveness_yeomans,6 +1,A,We can start here. What is the question?,YesNo_Questions_receptiveness_yeomans,0 +1,B,I am not sure. Where is the rest of our team?,WH_Questions_receptiveness_yeomans,1 +1,B,"Please help me figure this out, I really want to do well on this please",Please_receptiveness_yeomans,2 +2,C,Hey,Hello_receptiveness_yeomans,1 +2,C,Okay bro lets split it 50/50,Impersonal_Pronoun_receptiveness_yeomans,1 +2,D,Maybe but how about 60/40? I doubt its fair otherwise,Hedges_receptiveness_yeomans,2 +2,C,Seems fair,Hedges_receptiveness_yeomans,1 +1,B,I am not sure. Where is the rest of our team?,First_Person_Single_receptiveness_yeomans,1 +1,B,"Well please help me figure this out, I really want to do well on this please okay",factuality_politeness_convokit,1 +2,C,Seems possible,hashedge_politeness_convokit,1 +2,E,I see what youre thinking but I disagree,Acknowledgement_receptiveness_yeomans,1 +2,E,We get only one chance so we should understand how to split it,Acknowledgement_receptiveness_yeomans,2 +2,D,"I just don't agree, I'm making the 60/40 split",Adverb_Limiter_receptiveness_yeomans,1 +3,G,hey,indirect_greeting_politeness_convokit,1 +3,G,I think we should try something else,1st_person_start_politeness_convokit,1 +3,F,Ok whatever. You should leave the team then,2nd_person_start_politeness_convokit,1 +4,H,Honestly thank you so so much,factuality_politeness_convokit,1 +4,H,What's the plan?,direct_question_politeness_convokit,1 +4,I,That is the dumbest idea I've heard; youre actually dumb af,hasnegative_politeness_convokit,1 +4,H,What's ur problem here?,hasnegative_politeness_convokit,1 +5,J,Pleasure and an honor to meet you all,haspositive_politeness_convokit,1 +5,K,We should try that next,haspositive_politeness_convokit,0 +5,J,Could you please explain why? I don't really understand why you are thinking that,subjunctive_politeness_convokit,1 +5,K,Sorry sorry I didn't mean to,apologizing_politeness_convokit,1 +6,L,I don't really want to work with you all but let's get this over with,Impersonal_Pronoun_receptiveness_yeomans,1 +6,J,Fine by me,Affirmation_receptiveness_yeomans,1 +6,K,Ok so which part should we do first? the first or second?,YesNo_Questions_receptiveness_yeomans,1 +7,L,Please don't do that?,please_start_politeness_convokit,1 +7,L,I don't think that will work,hashedge_politeness_convokit,1 +7,M,I'm exhuasted rn,hasnegative_politeness_convokit,0 +7,M,i don't really care please just finish this up,haspositive_politeness_convokit,0 +7,N,Please don't do that?,Please_receptiveness_yeomans,1 +7,N,I don't think that will work,Hedges_receptiveness_yeomans,0 +7,O,I'm exhuasted rn,Negative_Emotion_receptiveness_yeomans,0 +7,O,i don't really care please just finish this up,Positive_Emotion_receptiveness_yeomans,0 +8,P,i appreciate all this from you,gratitude_politeness_convokit,1 +8,P,"well we should start rn, our part is long",1st_person_pl_politeness_convokit,1 +8,Q,ok forgive me for this error but,apologizing_politeness_convokit,1 +8,Q,you have to redo the whole thing,2nd_person_politeness_convokit,0 +8,R,ok so who will work with me? where should we begin?,direct_question_politeness_convokit,0 +8,S,i appreciate all this from you,Gratitude_receptiveness_yeomans,1 +8,S,"well we should start rn, our part is long",First_Person_Plural_receptiveness_yeomans,2 +8,T,ok forgive us for this error but,Apology_receptiveness_yeomans,0 +8,T,you have to redo the whole thing,Second_Person_receptiveness_yeomans,1 +8,U,ok so who will work with me? where should we begin?,WH_Questions_receptiveness_yeomans,2 +9,A,"I understand your perspective and agree that I would not want to have resentment in the workplace against women, as that would further compound the issue we are looking at. I do think that it is true that women are underrepresented in STEM careers and am a believer that something should be done to address this discrepancy, even if that is not implementing a priority for women in hiring decisions. While I don\'t think that companies should explicitly hire simply because of their gender, I do think that they should be mindful of the gender gap in STEM and look to address those issues through their hiring practices.",Impersonal_Pronoun_receptiveness_yeomans,12 +10,A,"I understand your perspective and agree that I would not want to have resentment in the workplace against women, as that would further compound the issue we are looking at. I do think that it is true that women are underrepresented in STEM careers and am a believer that something should be done to address this discrepancy, even if that is not implementing a priority for women in hiring decisions. While I don\'t think that companies should explicitly hire simply because of their gender, I do think that they should be mindful of the gender gap in STEM and look to address those issues through their hiring practices.",First_Person_Single_receptiveness_yeomans,5 +11,A,"I understand your perspective and agree that I would not want to have resentment in the workplace against women, as that would further compound the issue we are looking at. I do think that it is true that women are underrepresented in STEM careers and am a believer that something should be done to address this discrepancy, even if that is not implementing a priority for women in hiring decisions. While I don\'t think that companies should explicitly hire simply because of their gender, I do think that they should be mindful of the gender gap in STEM and look to address those issues through their hiring practices.",Hedges_receptiveness_yeomans,3 +12,A,"I understand your perspective and agree that I would not want to have resentment in the workplace against women, as that would further compound the issue we are looking at. I do think that it is true that women are underrepresented in STEM careers and am a believer that something should be done to address this discrepancy, even if that is not implementing a priority for women in hiring decisions. While I don\'t think that companies should explicitly hire simply because of their gender, I do think that they should be mindful of the gender gap in STEM and look to address those issues through their hiring practices.",Negation_receptiveness_yeomans,3 +13,A,"I understand your perspective and agree that I would not want to have resentment in the workplace against women, as that would further compound the issue we are looking at. I do think that it is true that women are underrepresented in STEM careers and am a believer that something should be done to address this discrepancy, even if that is not implementing a priority for women in hiring decisions. While I don\'t think that companies should explicitly hire simply because of their gender, I do think that they should be mindful of the gender gap in STEM and look to address those issues through their hiring practices.",Subjectivity_receptiveness_yeomans,3 +14,A,"I understand your perspective and agree that I would not want to have resentment in the workplace against women, as that would further compound the issue we are looking at. I do think that it is true that women are underrepresented in STEM careers and am a believer that something should be done to address this discrepancy, even if that is not implementing a priority for women in hiring decisions. While I don\'t think that companies should explicitly hire simply because of their gender, I do think that they should be mindful of the gender gap in STEM and look to address those issues through their hiring practices.",Negative_Emotion_receptiveness_yeomans,3 +15,A,"I understand your perspective and agree that I would not want to have resentment in the workplace against women, as that would further compound the issue we are looking at. I do think that it is true that women are underrepresented in STEM careers and am a believer that something should be done to address this discrepancy, even if that is not implementing a priority for women in hiring decisions. While I don\'t think that companies should explicitly hire simply because of their gender, I do think that they should be mindful of the gender gap in STEM and look to address those issues through their hiring practices.",Reasoning_receptiveness_yeomans,1 +16,A,"I understand your perspective and agree that I would not want to have resentment in the workplace against women, as that would further compound the issue we are looking at. I do think that it is true that women are underrepresented in STEM careers and am a believer that something should be done to address this discrepancy, even if that is not implementing a priority for women in hiring decisions. While I don\'t think that companies should explicitly hire simply because of their gender, I do think that they should be mindful of the gender gap in STEM and look to address those issues through their hiring practices.",Agreement_receptiveness_yeomans,1 +17,A,"I understand your perspective and agree that I would not want to have resentment in the workplace against women, as that would further compound the issue we are looking at. I do think that it is true that women are underrepresented in STEM careers and am a believer that something should be done to address this discrepancy, even if that is not implementing a priority for women in hiring decisions. While I don\'t think that companies should explicitly hire simply because of their gender, I do think that they should be mindful of the gender gap in STEM and look to address those issues through their hiring practices.",Second_Person_receptiveness_yeomans,1 +18,A,"I understand your perspective and agree that I would not want to have resentment in the workplace against women, as that would further compound the issue we are looking at. I do think that it is true that women are underrepresented in STEM careers and am a believer that something should be done to address this discrepancy, even if that is not implementing a priority for women in hiring decisions. While I don\'t think that companies should explicitly hire simply because of their gender, I do think that they should be mindful of the gender gap in STEM and look to address those issues through their hiring practices.",Adverb_Limiter_receptiveness_yeomans,1 +19,A,"I understand your perspective and agree that I would not want to have resentment in the workplace against women, as that would further compound the issue we are looking at. I do think that it is true that women are underrepresented in STEM careers and am a believer that something should be done to address this discrepancy, even if that is not implementing a priority for women in hiring decisions. While I don\'t think that companies should explicitly hire simply because of their gender, I do think that they should be mindful of the gender gap in STEM and look to address those issues through their hiring practices.",Disagreement_receptiveness_yeomans,1 +20,A,"I understand your perspective and agree that I would not want to have resentment in the workplace against women, as that would further compound the issue we are looking at. I do think that it is true that women are underrepresented in STEM careers and am a believer that something should be done to address this discrepancy, even if that is not implementing a priority for women in hiring decisions. While I don\'t think that companies should explicitly hire simply because of their gender, I do think that they should be mindful of the gender gap in STEM and look to address those issues through their hiring practices.",Acknowledgement_receptiveness_yeomans,1 +21,A,"I understand your perspective and agree that I would not want to have resentment in the workplace against women, as that would further compound the issue we are looking at. I do think that it is true that women are underrepresented in STEM careers and am a believer that something should be done to address this discrepancy, even if that is not implementing a priority for women in hiring decisions. While I don\'t think that companies should explicitly hire simply because of their gender, I do think that they should be mindful of the gender gap in STEM and look to address those issues through their hiring practices.",First_Person_Plural_receptiveness_yeomans,1 +22,A,"I understand your perspective and agree that I would not want to have resentment in the workplace against women, as that would further compound the issue we are looking at. I do think that it is true that women are underrepresented in STEM careers and am a believer that something should be done to address this discrepancy, even if that is not implementing a priority for women in hiring decisions. While I don\'t think that companies should explicitly hire simply because of their gender, I do think that they should be mindful of the gender gap in STEM and look to address those issues through their hiring practices.",For_Me_receptiveness_yeomans,0 +23,A,And I will always love you,Conjunction_Start_receptiveness_yeomans,1 +23,B,"Can you help me, can you please?",Can_You_receptiveness_yeomans,2 +23,C,"Can you, will you, could you please be mine?",Could_You_receptiveness_yeomans,1 +23,D,"This land is your land, this land is my land; this land was made for you and for me",For_You_receptiveness_yeomans,1 +0,0,unneccessagf shoulds shouldve should'nt,discrepancies_lexical_wordcount,4 +0,0,wouldnt unneedofek want must've should'nt,discrepancies_lexical_wordcount,5 +0,0,hopes wish,discrepancies_lexical_wordcount,2 +0,0,must'nt rather wouldn't ought'nt,discrepancies_lexical_wordcount,4 +0,0,needn't unwantpotnw hopefulness oughta couldn't,discrepancies_lexical_wordcount,5 +0,0,musilej,hear_lexical_wordcount,1 +0,0,listens hearing listenerjp noisy,hear_lexical_wordcount,4 +0,0,noises noisy harmongoc hearing audiblweds,hear_lexical_wordcount,5 +0,0,ear yell listenerpvo,hear_lexical_wordcount,3 +0,0,sang rang ear concertfuw,hear_lexical_wordcount,4 +0,0,drapeulqv backyard loveseatjproz closet,home_lexical_wordcount,4 +0,0,curtainqygkr drapekwvh,home_lexical_wordcount,2 +0,0,bathae,home_lexical_wordcount,1 +0,0,curtainbu loveseatntr family housing rooms,home_lexical_wordcount,5 +0,0,bedroomxhpl furniture,home_lexical_wordcount,2 +0,0,if,conjunction_lexical_wordcount,1 +0,0,altho while though then how,conjunction_lexical_wordcount,5 +0,0,when or,conjunction_lexical_wordcount,2 +0,0,if,conjunction_lexical_wordcount,1 +0,0,but however,conjunction_lexical_wordcount,2 +0,0,undoubtni,certainty_lexical_wordcount,1 +0,0,altogether truthzhf,certainty_lexical_wordcount,2 +0,0,distinctue definitiveeol commitmentflk forever,certainty_lexical_wordcount,4 +0,0,total essential,certainty_lexical_wordcount,2 +0,0,fundamentals completes guarantidjp,certainty_lexical_wordcount,3 +0,0,both add with,inclusive_lexical_wordcount,3 +0,0,around we along,inclusive_lexical_wordcount,3 +0,0,each with,inclusive_lexical_wordcount,2 +0,0,with inclusg come came around,inclusive_lexical_wordcount,5 +0,0,each around come,inclusive_lexical_wordcount,3 +0,0,nausen sensation brunchkjz,bio_lexical_wordcount,3 +0,0,butt saliverbwp,bio_lexical_wordcount,2 +0,0,palms,bio_lexical_wordcount,1 +0,0,liquoriole,bio_lexical_wordcount,1 +0,0,xanax prescriqd hand sodauce,bio_lexical_wordcount,4 +0,0,strivl master,achievement_lexical_wordcount,2 +0,0,originattvf solutionmuyho elitlxoup proficiengiy quittd,achievement_lexical_wordcount,5 +0,0,finalizuav best quitti capabfs,achievement_lexical_wordcount,4 +0,0,masters plans,achievement_lexical_wordcount,2 +0,0,strengthe successqfhs herovqw overconfidence,achievement_lexical_wordcount,4 +0,0,apparently,adverbs_lexical_wordcount,1 +0,0,so,adverbs_lexical_wordcount,1 +0,0,immediately generally very well truly,adverbs_lexical_wordcount,5 +0,0,rather instead here pushty,adverbs_lexical_wordcount,4 +0,0,instead,adverbs_lexical_wordcount,1 +0,0,phobii apprehensnmeyt,anxiety_lexical_wordcount,2 +0,0,obsesstusbg anguishuiy terrorkm,anxiety_lexical_wordcount,3 +0,0,restlesst tenseod feared overwhelmfvlxi,anxiety_lexical_wordcount,4 +0,0,timidfzbh stressetd,anxiety_lexical_wordcount,2 +0,0,apprehensrm dreadn,anxiety_lexical_wordcount,2 +0,0,oneself shes he she'll herself,third_person_lexical_wordcount,5 +0,0,shes he'd himself hes her,third_person_lexical_wordcount,5 +0,0,she'll,third_person_lexical_wordcount,1 +0,0,she'll her,third_person_lexical_wordcount,2 +0,0,she'll him she's hes he,third_person_lexical_wordcount,5 +0,0,havent haven't ought'nt wont,negation_lexical_wordcount,4 +0,0,needn't hasn't,negation_lexical_wordcount,2 +0,0,wouldnt,negation_lexical_wordcount,1 +0,0,nobodashm hasn't didnt,negation_lexical_wordcount,3 +0,0,hasn't never,negation_lexical_wordcount,2 +0,0,titty fuckerusz bitchnsl goddamomde hell,swear_lexical_wordcount,5 +0,0,sob fuckinoawys titty cuntq,swear_lexical_wordcount,4 +0,0,cuntn pisstkzme dicks butts,swear_lexical_wordcount,4 +0,0,fucks jeez sonofako crappy,swear_lexical_wordcount,4 +0,0,fucks butt heck,swear_lexical_wordcount,3 +0,0,urnj immortalwai,death_lexical_wordcount,2 +0,0,od bury demise tombd urnnig,death_lexical_wordcount,5 +0,0,demise,death_lexical_wordcount,1 +0,0,immortalyjedn embalmfqydb hearsepdk,death_lexical_wordcount,3 +0,0,ghostaw alive,death_lexical_wordcount,2 +0,0,amputu,health_lexical_wordcount,1 +0,0,nearsighted neurologhl toxv painly throbgvmhn,health_lexical_wordcount,5 +0,0,wash doselndu mono,health_lexical_wordcount,3 +0,0,ill,health_lexical_wordcount,1 +0,0,checkupfli burpzxevw scabo living ICU,health_lexical_wordcount,5 +0,0,orangemacis squaruei purplabnk,see_lexical_wordcount,3 +0,0,colourxml roundxgijb sees seen colorht,see_lexical_wordcount,5 +0,0,staring look yellowkyn triangqmpv,see_lexical_wordcount,4 +0,0,shiny lookerutn scannv look,see_lexical_wordcount,4 +0,0,scanni seen,see_lexical_wordcount,2 +0,0,facialrqth foot lipslt toe titties,body_lexical_wordcount,5 +0,0,toenailhtqe droolc,body_lexical_wordcount,2 +0,0,hip dick boobvw,body_lexical_wordcount,3 +0,0,slenderbmvq ass,body_lexical_wordcount,2 +0,0,nudeytmcb stomachltbw wake breastqyp eyewut,body_lexical_wordcount,5 +0,0,moms bro,family_lexical_wordcount,2 +0,0,nephewz wifevxmlj mom's parentuph,family_lexical_wordcount,4 +0,0,pa sons fatherhb,family_lexical_wordcount,3 +0,0,aunte sons grandkidywgxb exes ex,family_lexical_wordcount,5 +0,0,relatives husbandypoiz mommalqhxo,family_lexical_wordcount,3 +0,0,sickengwxku,negative_affect_lexical_wordcount,1 +0,0,hurtefdp lazieqxar impersonal,negative_affect_lexical_wordcount,3 +0,0,egotisy destroygj,negative_affect_lexical_wordcount,2 +0,0,unwelcomrfwd,negative_affect_lexical_wordcount,1 +0,0,jealoustemf unkind,negative_affect_lexical_wordcount,2 +0,0,significant else every section,quantifier_lexical_wordcount,4 +0,0,ton lotta,quantifier_lexical_wordcount,2 +0,0,either best greatest,quantifier_lexical_wordcount,3 +0,0,best,quantifier_lexical_wordcount,1 +0,0,singlufb rest fullmzf,quantifier_lexical_wordcount,3 +0,0,glad great charmbrwsd wins,positive_affect_lexical_wordcount,4 +0,0,generot helping sincerbucaj,positive_affect_lexical_wordcount,3 +0,0,freedswu adventursfk gently deliciouseuxl assurm,positive_affect_lexical_wordcount,5 +0,0,worshipstmjc soulmateeiya treat huggpo,positive_affect_lexical_wordcount,4 +0,0,grin wealthlg thrillzbrqf casual proudrqu,positive_affect_lexical_wordcount,5 +0,0,restructurucq,insight_lexical_wordcount,1 +0,0,know decidux recallwz seems solutionlxh,insight_lexical_wordcount,5 +0,0,wonder motivsc sensing secret,insight_lexical_wordcount,4 +0,0,believes,insight_lexical_wordcount,1 +0,0,suspectc infers,insight_lexical_wordcount,2 +0,0,man,humans_lexical_wordcount,1 +0,0,newbornl citizen'phtgi ladies,humans_lexical_wordcount,3 +0,0,girl's babies persons chicks,humans_lexical_wordcount,4 +0,0,infant,humans_lexical_wordcount,1 +0,0,ladies ma'am citizen,humans_lexical_wordcount,3 +0,0,hasn't makes describe believes I've,present_tense_lexical_wordcount,5 +0,0,gets how's,present_tense_lexical_wordcount,2 +0,0,has hopes admits,present_tense_lexical_wordcount,3 +0,0,let's,present_tense_lexical_wordcount,1 +0,0,suck wait aren't feels,present_tense_lexical_wordcount,4 +0,0,wouldnt gonna,future_tense_lexical_wordcount,2 +0,0,mustnt should shall,future_tense_lexical_wordcount,3 +0,0,must've,future_tense_lexical_wordcount,1 +0,0,must should it'll won't shall,future_tense_lexical_wordcount,5 +0,0,shouldve mustnt,future_tense_lexical_wordcount,2 +0,0,listened held loved cried changed,past_tense_lexical_wordcount,5 +0,0,sent sensed tried taken shouldve,past_tense_lexical_wordcount,5 +0,0,ate sucked tried,past_tense_lexical_wordcount,3 +0,0,ran described,past_tense_lexical_wordcount,2 +0,0,didn't,past_tense_lexical_wordcount,1 +0,0,post distanpiy,relative_lexical_wordcount,2 +0,0,go marchal updatmwi,relative_lexical_wordcount,3 +0,0,walking growing gianthy age,relative_lexical_wordcount,4 +0,0,initiatoxtwa follow,relative_lexical_wordcount,2 +0,0,hall bending widthxikw,relative_lexical_wordcount,3 +0,0,loverkfxo pornoiu,sexual_lexical_wordcount,2 +0,0,virgindtrl humpysbwe prudishybiq,sexual_lexical_wordcount,3 +0,0,virginc,sexual_lexical_wordcount,1 +0,0,fucks pubic gay,sexual_lexical_wordcount,3 +0,0,prostatijvda dick,sexual_lexical_wordcount,2 +0,0,curbijh boundlby,inhibition_lexical_wordcount,2 +0,0,deniaxi,inhibition_lexical_wordcount,1 +0,0,prudishxc deniabxp,inhibition_lexical_wordcount,2 +0,0,constrictimhr,inhibition_lexical_wordcount,1 +0,0,withholdyzaqb stops,inhibition_lexical_wordcount,2 +0,0,remorset ruinc grimwftle,sadness_lexical_wordcount,3 +0,0,discouragnepqi tragict devastatu,sadness_lexical_wordcount,3 +0,0,grief unimportant,sadness_lexical_wordcount,2 +0,0,miss yearnlkw whining tragickh pitiulpnv,sadness_lexical_wordcount,5 +0,0,miss regretzkbrc missed unhappj,sadness_lexical_wordcount,4 +0,0,weve son's,social_lexical_wordcount,2 +0,0,listenerqe girlfriendwsnya,social_lexical_wordcount,2 +0,0,hers,social_lexical_wordcount,1 +0,0,he'll sisterqjtfk,social_lexical_wordcount,2 +0,0,coworkertbpf mates he's mailing interrupm,social_lexical_wordcount,5 +0,0,somethingjmcpi noboda,indefinite_pronoun_lexical_wordcount,2 +0,0,somebodp somewhere itll who'll,indefinite_pronoun_lexical_wordcount,4 +0,0,that'd somethingosdqx,indefinite_pronoun_lexical_wordcount,2 +0,0,somethingp thatll those which someonecrhbd,indefinite_pronoun_lexical_wordcount,5 +0,0,it'll it'd,indefinite_pronoun_lexical_wordcount,2 +0,0,sinnzkc kosher qur'anpy,religion_lexical_wordcount,3 +0,0,mercy,religion_lexical_wordcount,1 +0,0,templefydxz hinduejs muhammsla lutheranwv ministerlnfts,religion_lexical_wordcount,5 +0,0,catholickd,religion_lexical_wordcount,1 +0,0,sikhc judaprfd muhammehcml sin,religion_lexical_wordcount,4 +0,0,laidoff tradejnx taxes freshmknd,work_lexical_wordcount,4 +0,0,incorprhq negotiatjf presentationomwfa,work_lexical_wordcount,3 +0,0,politics mda,work_lexical_wordcount,2 +0,0,revieww classes,work_lexical_wordcount,2 +0,0,masters,work_lexical_wordcount,1 +0,0,owes cashk bankpsiar checks kronlwik,money_lexical_wordcount,5 +0,0,dinarcsg businesszosw revenueocp costbjwta owe,money_lexical_wordcount,5 +0,0,euro auditors store spending,money_lexical_wordcount,4 +0,0,mortgpzvi overtime,money_lexical_wordcount,2 +0,0,bucks wagerfv,money_lexical_wordcount,2 +0,0,effectcaxgn,causation_lexical_wordcount,1 +0,0,leadmbhfe infer depends creatend,causation_lexical_wordcount,4 +0,0,depends,causation_lexical_wordcount,1 +0,0,deducgulp outcomecli affected hows producnbu,causation_lexical_wordcount,5 +0,0,solutionva launchvoap leadhbi provoku,causation_lexical_wordcount,4 +0,0,threatxre offencefhcog ludicrouslf,anger_lexical_wordcount,3 +0,0,enragoqusn,anger_lexical_wordcount,1 +0,0,sucks brutals sucked threatd destroyj,anger_lexical_wordcount,5 +0,0,sinister,anger_lexical_wordcount,1 +0,0,raping battliz warfareid defensjazn molestgv,anger_lexical_wordcount,5 +0,0,mine I've myself I'd I'll,first_person_singular_lexical_wordcount,5 +0,0,I'll I've,first_person_singular_lexical_wordcount,2 +0,0,myself my,first_person_singular_lexical_wordcount,2 +0,0,ive I'd,first_person_singular_lexical_wordcount,2 +0,0,myself I'm ive my I've,first_person_singular_lexical_wordcount,5 +0,0,rub hard warmlvye,feel_lexical_wordcount,3 +0,0,hardevtqef driegnk feels touchlzf,feel_lexical_wordcount,4 +0,0,leatherjcf pressed squeezul silkjn,feel_lexical_wordcount,4 +0,0,skin brushtasj rub colde caressi,feel_lexical_wordcount,5 +0,0,hottjmuo,feel_lexical_wordcount,1 +0,0,mysterp ambigun,tentativeness_lexical_wordcount,2 +0,0,most wondered depend alot vary,tentativeness_lexical_wordcount,5 +0,0,fairly lucks unresolvn hesitaq option,tentativeness_lexical_wordcount,5 +0,0,fuzznaxg hypotheticoqwzy barely,tentativeness_lexical_wordcount,3 +0,0,depend indetermingifjl randomitf hypotheticvzkg supposed,tentativeness_lexical_wordcount,5 +0,0,exclujvy,exclusive_lexical_wordcount,1 +0,0,either except if somethingfxdq sometime,exclusive_lexical_wordcount,5 +0,0,versus,exclusive_lexical_wordcount,1 +0,0,but exclusxklz except or,exclusive_lexical_wordcount,4 +0,0,sometime,exclusive_lexical_wordcount,1 +0,0,youre wished thank went,verbs_lexical_wordcount,4 +0,0,meant hoped lost,verbs_lexical_wordcount,3 +0,0,ran carry showed used,verbs_lexical_wordcount,4 +0,0,theres care cannot made,verbs_lexical_wordcount,4 +0,0,affected misses theyd kept thatd,verbs_lexical_wordcount,5 +0,0,gfjgevb,friends_lexical_wordcount,1 +0,0,exgirll,friends_lexical_wordcount,1 +0,0,mates,friends_lexical_wordcount,1 +0,0,mate loveru mates buddyv,friends_lexical_wordcount,4 +0,0,neighbord partnerzcvdj roomatel girlfriendt gft,friends_lexical_wordcount,5 +0,0,a an alot,article_lexical_wordcount,3 +0,0,a an,article_lexical_wordcount,2 +0,0,a an alot,article_lexical_wordcount,3 +0,0,the an a alot,article_lexical_wordcount,4 +0,0,alot,article_lexical_wordcount,1 +0,0,oh yes I believe,argue_lexical_wordcount,3 +0,0,u mean and really,argue_lexical_wordcount,3 +0,0,cause no I know and,argue_lexical_wordcount,4 +0,0,and I think actually yes well,argue_lexical_wordcount,5 +0,0,so,argue_lexical_wordcount,1 +0,0,wouldve whod you've mustn't,auxiliary_verbs_lexical_wordcount,4 +0,0,let youve itd ought,auxiliary_verbs_lexical_wordcount,4 +0,0,can don't theyre wasn't,auxiliary_verbs_lexical_wordcount,4 +0,0,hes must'nt wont did mustn't,auxiliary_verbs_lexical_wordcount,5 +0,0,shan't theyve oughtve becomes done,auxiliary_verbs_lexical_wordcount,5 +0,0,meaningi all wanted determining,cognitive_mech_lexical_wordcount,4 +0,0,appearing suppresshvw proof changes,cognitive_mech_lexical_wordcount,4 +0,0,rearrangbqlg randomuer containn deducczr practically,cognitive_mech_lexical_wordcount,5 +0,0,occasionalszxg hazy requirj,cognitive_mech_lexical_wordcount,3 +0,0,repressydvml,cognitive_mech_lexical_wordcount,1 +0,0,until,preposition_lexical_wordcount,1 +0,0,along ahead,preposition_lexical_wordcount,2 +0,0,below under thru,preposition_lexical_wordcount,3 +0,0,except insides towardkhyrs between beside,preposition_lexical_wordcount,5 +0,0,without out about,preposition_lexical_wordcount,3 +0,0,let's,first_person_plural_lexical_wordcount,1 +0,0,we'd let's lets,first_person_plural_lexical_wordcount,3 +0,0,our lets,first_person_plural_lexical_wordcount,2 +0,0,we've,first_person_plural_lexical_wordcount,1 +0,0,ours we'd weve ourselves let's,first_person_plural_lexical_wordcount,5 +0,0,drily,percept_lexical_wordcount,1 +0,0,grabwktxr,percept_lexical_wordcount,1 +0,0,savourzw redness,percept_lexical_wordcount,2 +0,0,speaking,percept_lexical_wordcount,1 +0,0,souriau tang,percept_lexical_wordcount,2 +0,0,thine yall,second_person_lexical_wordcount,2 +0,0,you're youd,second_person_lexical_wordcount,2 +0,0,y'all you'd thine you're,second_person_lexical_wordcount,4 +0,0,thee thine youre yours,second_person_lexical_wordcount,4 +0,0,ye you,second_person_lexical_wordcount,2 +0,0,mustnt hope mistakwzl hoping,discrepancies_lexical_wordcount,4 +0,0,would've problemo need lacksuexg expectt,discrepancies_lexical_wordcount,5 +0,0,couldnt hopeful should,discrepancies_lexical_wordcount,3 +0,0,desirva,discrepancies_lexical_wordcount,1 +0,0,wishes wishing must've need,discrepancies_lexical_wordcount,4 +0,0,noises thundero,hear_lexical_wordcount,2 +0,0,thunderq inaudibln sang hears,hear_lexical_wordcount,4 +0,0,loudvh sang hushmqplh speak,hear_lexical_wordcount,4 +0,0,heard speakertphv shoutiaem audiblbohi,hear_lexical_wordcount,4 +0,0,sang whispervhxqk,hear_lexical_wordcount,2 +0,0,lawnxdi doghousemilk residenlwfxa condo vacuumk,home_lexical_wordcount,5 +0,0,lawnjr residencpbs neighboregax,home_lexical_wordcount,3 +0,0,doghouseeastb roomiepuma,home_lexical_wordcount,2 +0,0,porch cleanhwe condo,home_lexical_wordcount,3 +0,0,maidqyldk bedroomox patioquf,home_lexical_wordcount,3 +0,0,whether nor then,conjunction_lexical_wordcount,3 +0,0,because if then so,conjunction_lexical_wordcount,4 +0,0,whereas while,conjunction_lexical_wordcount,2 +0,0,plus until,conjunction_lexical_wordcount,2 +0,0,when how although though,conjunction_lexical_wordcount,4 +0,0,defined essential undoubts completed,certainty_lexical_wordcount,4 +0,0,wholly distinctcx unquestionj,certainty_lexical_wordcount,3 +0,0,altogether precisjawd exactnqhfl,certainty_lexical_wordcount,3 +0,0,exactofn invariabr unquestionqzj defined,certainty_lexical_wordcount,4 +0,0,completes inevitabx undoubtgyzl,certainty_lexical_wordcount,3 +0,0,came,inclusive_lexical_wordcount,1 +0,0,around come open,inclusive_lexical_wordcount,3 +0,0,come,inclusive_lexical_wordcount,1 +0,0,add came come we,inclusive_lexical_wordcount,4 +0,0,inside with both,inclusive_lexical_wordcount,3 +0,0,fattsc faintdlseh,bio_lexical_wordcount,2 +0,0,syndromeagxe,bio_lexical_wordcount,1 +0,0,digestp musclephj skinnijsv healing,bio_lexical_wordcount,4 +0,0,penisygbjp,bio_lexical_wordcount,1 +0,0,veggiecla,bio_lexical_wordcount,1 +0,0,unproducet importanmqdw resourcefulcamzd,achievement_lexical_wordcount,3 +0,0,concludwo ranking masters lose strongm,achievement_lexical_wordcount,5 +0,0,loserxc,achievement_lexical_wordcount,1 +0,0,effortcxbe first triumphujryl masterfulvq irresponsiblet,achievement_lexical_wordcount,5 +0,0,confident abilitbdz endeavafre defeatxjq determined,achievement_lexical_wordcount,5 +0,0,mostly now whenever too primarily,adverbs_lexical_wordcount,5 +0,0,probably back perhaps here mostly,adverbs_lexical_wordcount,5 +0,0,somehow apparently how yet here,adverbs_lexical_wordcount,5 +0,0,now eventually soon how completely,adverbs_lexical_wordcount,5 +0,0,generally well such seriously here,adverbs_lexical_wordcount,5 +0,0,overwhelmryjd strainf shakewm,anxiety_lexical_wordcount,3 +0,0,uncertainve feared confusmb,anxiety_lexical_wordcount,3 +0,0,franticivctu stuns shook uncertainu,anxiety_lexical_wordcount,4 +0,0,shakiihxd frightixu shook stunned misersjne,anxiety_lexical_wordcount,5 +0,0,alarmkzu tremblwzocs stuns,anxiety_lexical_wordcount,3 +0,0,she'll he,third_person_lexical_wordcount,2 +0,0,him her,third_person_lexical_wordcount,2 +0,0,his,third_person_lexical_wordcount,1 +0,0,her she's hers,third_person_lexical_wordcount,3 +0,0,herself hes he's,third_person_lexical_wordcount,3 +0,0,oughtn't don't wouldnt,negation_lexical_wordcount,3 +0,0,shouldn't doesnt didnt nowhere should'nt,negation_lexical_wordcount,5 +0,0,arent shouldnt isn't,negation_lexical_wordcount,3 +0,0,nope,negation_lexical_wordcount,1 +0,0,need'nt not negatlpji wouldn't,negation_lexical_wordcount,4 +0,0,dang pussyah,swear_lexical_wordcount,2 +0,0,hell dumbpbzvd bitchkvyuz butt homo,swear_lexical_wordcount,5 +0,0,fuck shitq cock pisslkx,swear_lexical_wordcount,4 +0,0,sob queersgm pussyeqru fucks,swear_lexical_wordcount,4 +0,0,mofo prickyj dick niggerjvw,swear_lexical_wordcount,4 +0,0,embalmjt oded gravevwhfi tombetp,death_lexical_wordcount,4 +0,0,drownksti,death_lexical_wordcount,1 +0,0,lynchxafto war,death_lexical_wordcount,2 +0,0,dies bereavemfhcn,death_lexical_wordcount,2 +0,0,genocidgjoau grief morticianbspv,death_lexical_wordcount,3 +0,0,asthmanmc tumofwvj chokkohz physicianuqvwr,health_lexical_wordcount,4 +0,0,nearsighted throbj anorexiky tinglliqf,health_lexical_wordcount,4 +0,0,throbpqym woundzlkw gynobqovn,health_lexical_wordcount,3 +0,0,therapdkzr healed OCD,health_lexical_wordcount,3 +0,0,living coronard,health_lexical_wordcount,2 +0,0,scannrq circle reddeyo glowx,see_lexical_wordcount,4 +0,0,sunshingwv sees clickhbiyp scannmbgl eying,see_lexical_wordcount,5 +0,0,eyeqblh rectangypwos triangdg seer looked,see_lexical_wordcount,5 +0,0,columnxvs sightsue,see_lexical_wordcount,2 +0,0,whitishk,see_lexical_wordcount,1 +0,0,bone belly nervew,body_lexical_wordcount,3 +0,0,skin palms breathdcafq,body_lexical_wordcount,3 +0,0,brainz bones,body_lexical_wordcount,2 +0,0,rashnut tit itchwght kneenjk,body_lexical_wordcount,4 +0,0,lungr facialt slenderi spine,body_lexical_wordcount,4 +0,0,husbandyabx,family_lexical_wordcount,1 +0,0,marrieboagv brotherrhda,family_lexical_wordcount,2 +0,0,exhusbanda granddaursubf,family_lexical_wordcount,2 +0,0,familiesc,family_lexical_wordcount,1 +0,0,cousinbzmwh marriexrzvf,family_lexical_wordcount,2 +0,0,longingjhbn,negative_affect_lexical_wordcount,1 +0,0,lamefpbv disadvantagenxtql,negative_affect_lexical_wordcount,2 +0,0,insincermy remorseoeia,negative_affect_lexical_wordcount,2 +0,0,difficultna jaded wars vanity,negative_affect_lexical_wordcount,4 +0,0,difficultnmril warring vulnerabc shitzv,negative_affect_lexical_wordcount,4 +0,0,tons greater simple,quantifier_lexical_wordcount,3 +0,0,extent,quantifier_lexical_wordcount,1 +0,0,mucho much section lotsa extremely,quantifier_lexical_wordcount,5 +0,0,ton piecg page differenceb whole,quantifier_lexical_wordcount,5 +0,0,else,quantifier_lexical_wordcount,1 +0,0,alrightdo,positive_affect_lexical_wordcount,1 +0,0,helperhnx sunny,positive_affect_lexical_wordcount,2 +0,0,complimentjlbhe convincfthqs graces,positive_affect_lexical_wordcount,3 +0,0,lucks romanczk praisyvpch safelmgx hehp,positive_affect_lexical_wordcount,5 +0,0,talentv interestuthxn,positive_affect_lexical_wordcount,2 +0,0,reasonpulei meaningidwf,insight_lexical_wordcount,2 +0,0,seem questiontmyhc reorganitkgar,insight_lexical_wordcount,3 +0,0,sense,insight_lexical_wordcount,1 +0,0,wonders,insight_lexical_wordcount,1 +0,0,explaining rationallpfg appreciate,insight_lexical_wordcount,3 +0,0,man,humans_lexical_wordcount,1 +0,0,girlshfsio adults,humans_lexical_wordcount,2 +0,0,child,humans_lexical_wordcount,1 +0,0,citizen,humans_lexical_wordcount,1 +0,0,ma'am men'bldt self femalejlcvo babeae,humans_lexical_wordcount,5 +0,0,hears,present_tense_lexical_wordcount,1 +0,0,brings thats doesn't whats,present_tense_lexical_wordcount,4 +0,0,goes start they're,present_tense_lexical_wordcount,3 +0,0,describes havent dislikes,present_tense_lexical_wordcount,3 +0,0,knows believe listens,present_tense_lexical_wordcount,3 +0,0,mustnt must must'nt shouldnt you'll,future_tense_lexical_wordcount,5 +0,0,ought'nt,future_tense_lexical_wordcount,1 +0,0,thatll wouldve should'nt gonna,future_tense_lexical_wordcount,4 +0,0,that'll won't I'll,future_tense_lexical_wordcount,3 +0,0,who'll should'nt,future_tense_lexical_wordcount,2 +0,0,hated went wondered appeared,past_tense_lexical_wordcount,4 +0,0,ate,past_tense_lexical_wordcount,1 +0,0,disliked lost described spent,past_tense_lexical_wordcount,4 +0,0,ate,past_tense_lexical_wordcount,1 +0,0,forgote cared believed,past_tense_lexical_wordcount,3 +0,0,awhile immediately outerki,relative_lexical_wordcount,3 +0,0,perpetualp internalltsem tiniest,relative_lexical_wordcount,3 +0,0,right immediateness fademl finishykxwt,relative_lexical_wordcount,4 +0,0,corners old over,relative_lexical_wordcount,3 +0,0,fit approachjuzeb,relative_lexical_wordcount,2 +0,0,erectile condom pornfzqh fucks,sexual_lexical_wordcount,4 +0,0,fuckinc asses condom queerduvk,sexual_lexical_wordcount,4 +0,0,pregnange erectionux,sexual_lexical_wordcount,2 +0,0,orgasmt sexw chlamydia gay,sexual_lexical_wordcount,4 +0,0,rapistph ovarsg tits,sexual_lexical_wordcount,3 +0,0,withheld defencjtr,inhibition_lexical_wordcount,2 +0,0,hesitaz tightq halthvc,inhibition_lexical_wordcount,3 +0,0,protectab securulxeo interferhvrx deniaanhcy restraindrv,inhibition_lexical_wordcount,5 +0,0,waits,inhibition_lexical_wordcount,1 +0,0,controlx waited tidy,inhibition_lexical_wordcount,3 +0,0,defeats,sadness_lexical_wordcount,1 +0,0,hopelesspkm heartbrokekible cried loses resigne,sadness_lexical_wordcount,5 +0,0,whining sadness cry cried disheartengzeaq,sadness_lexical_wordcount,5 +0,0,sadly damagbntc pessimisrc,sadness_lexical_wordcount,3 +0,0,hopelessa dissatisfcl fatigucuvjd disillusionqt isolatg,sadness_lexical_wordcount,5 +0,0,assemblkd meet band guyawg kid,social_lexical_wordcount,5 +0,0,help excusk peoplelnm organizho yall,social_lexical_wordcount,5 +0,0,sons,social_lexical_wordcount,1 +0,0,his participanteir,social_lexical_wordcount,2 +0,0,grandpap whom mailerut,social_lexical_wordcount,3 +0,0,this that it'd,indefinite_pronoun_lexical_wordcount,3 +0,0,these anything thatll everybodhn it'll,indefinite_pronoun_lexical_wordcount,5 +0,0,noboddup whats,indefinite_pronoun_lexical_wordcount,2 +0,0,it's who'd thats it whats,indefinite_pronoun_lexical_wordcount,5 +0,0,anything wholl these,indefinite_pronoun_lexical_wordcount,3 +0,0,karma salvation orthodoxfdy rosaries sect,religion_lexical_wordcount,5 +0,0,rosary jesuitgsabe hell,religion_lexical_wordcount,3 +0,0,hell,religion_lexical_wordcount,1 +0,0,christianwq muhammyprqh piety sects,religion_lexical_wordcount,4 +0,0,sunni scripturvko templeme salvation,religion_lexical_wordcount,4 +0,0,credentialrs com absentp,work_lexical_wordcount,3 +0,0,mfg reportsuro commercsjezh collabw,work_lexical_wordcount,4 +0,0,outsourcrfndl,work_lexical_wordcount,1 +0,0,transfergdnu grad,work_lexical_wordcount,2 +0,0,econgv goalg,work_lexical_wordcount,2 +0,0,cashlf,money_lexical_wordcount,1 +0,0,debti shop consumerzae inheritfkyv,money_lexical_wordcount,4 +0,0,stocks,money_lexical_wordcount,1 +0,0,taxaxv cheapi,money_lexical_wordcount,2 +0,0,incomegfl bet auditing taxansjbf,money_lexical_wordcount,4 +0,0,thereforrnsq,causation_lexical_wordcount,1 +0,0,origins,causation_lexical_wordcount,1 +0,0,motivnt launchvt,causation_lexical_wordcount,2 +0,0,makes forcev using obedienwayd,causation_lexical_wordcount,4 +0,0,compliance obedienlpijv pick,causation_lexical_wordcount,3 +0,0,sucked arrogant ferocwv,anger_lexical_wordcount,3 +0,0,punishx enragvbj contemptawb,anger_lexical_wordcount,3 +0,0,maniacxo pissmygt rebelmp,anger_lexical_wordcount,3 +0,0,stupidncwg hellish paranoilbock warring,anger_lexical_wordcount,4 +0,0,naga angrwmnl tantrumsv,anger_lexical_wordcount,3 +0,0,ive I've,first_person_singular_lexical_wordcount,2 +0,0,Id,first_person_singular_lexical_wordcount,1 +0,0,Id myself,first_person_singular_lexical_wordcount,2 +0,0,I'd,first_person_singular_lexical_wordcount,1 +0,0,i,first_person_singular_lexical_wordcount,1 +0,0,weightliftd hand driemau drily,feel_lexical_wordcount,4 +0,0,grippfipun feelingwkaf thinnajy,feel_lexical_wordcount,3 +0,0,skin'men,feel_lexical_wordcount,1 +0,0,weight press hot thin silkvr,feel_lexical_wordcount,5 +0,0,skin'h,feel_lexical_wordcount,1 +0,0,assumbvd seemed usually,tentativeness_lexical_wordcount,3 +0,0,option,tentativeness_lexical_wordcount,1 +0,0,someonesyc wonders theorhe,tentativeness_lexical_wordcount,3 +0,0,spose hardly seemed alot,tentativeness_lexical_wordcount,4 +0,0,often appearing,tentativeness_lexical_wordcount,2 +0,0,either except sometime,exclusive_lexical_wordcount,3 +0,0,without,exclusive_lexical_wordcount,1 +0,0,really but whether,exclusive_lexical_wordcount,3 +0,0,vs,exclusive_lexical_wordcount,1 +0,0,if,exclusive_lexical_wordcount,1 +0,0,begin supported,verbs_lexical_wordcount,2 +0,0,begin held who's describe how's,verbs_lexical_wordcount,5 +0,0,takes,verbs_lexical_wordcount,1 +0,0,happened saw mustnt brings,verbs_lexical_wordcount,4 +0,0,slept took waited,verbs_lexical_wordcount,3 +0,0,pals bud amigodyzg mate's girlfriendur,friends_lexical_wordcount,5 +0,0,mates,friends_lexical_wordcount,1 +0,0,neighborwtey bftxuv comradq,friends_lexical_wordcount,3 +0,0,colleaguejo buddiesef,friends_lexical_wordcount,2 +0,0,bfbfi,friends_lexical_wordcount,1 +0,0,an a alot the,article_lexical_wordcount,4 +0,0,the,article_lexical_wordcount,1 +0,0,an,article_lexical_wordcount,1 +0,0,an the,article_lexical_wordcount,2 +0,0,an,article_lexical_wordcount,1 +0,0,u know no,argue_lexical_wordcount,2 +0,0,really you know I think,argue_lexical_wordcount,3 +0,0,really I believe,argue_lexical_wordcount,2 +0,0,cause,argue_lexical_wordcount,1 +0,0,I know,argue_lexical_wordcount,1 +0,0,you'd could,auxiliary_verbs_lexical_wordcount,2 +0,0,couldnt isn't,auxiliary_verbs_lexical_wordcount,2 +0,0,oughta had be what's,auxiliary_verbs_lexical_wordcount,4 +0,0,be shant itll,auxiliary_verbs_lexical_wordcount,3 +0,0,ain't couldnt,auxiliary_verbs_lexical_wordcount,2 +0,0,avertv,cognitive_mech_lexical_wordcount,1 +0,0,yearnqgjth,cognitive_mech_lexical_wordcount,1 +0,0,infer tentativwc wouldn't,cognitive_mech_lexical_wordcount,3 +0,0,around commit banned fundamental,cognitive_mech_lexical_wordcount,4 +0,0,obedienoki solutionhk,cognitive_mech_lexical_wordcount,2 +0,0,around plus,preposition_lexical_wordcount,2 +0,0,onto,preposition_lexical_wordcount,1 +0,0,insides in behind out,preposition_lexical_wordcount,4 +0,0,insides amongzekb unto by than,preposition_lexical_wordcount,5 +0,0,across above about without,preposition_lexical_wordcount,4 +0,0,we'd us our weve,first_person_plural_lexical_wordcount,4 +0,0,we'd we've weve ourselves we,first_person_plural_lexical_wordcount,5 +0,0,we've we're lets,first_person_plural_lexical_wordcount,3 +0,0,ourselves,first_person_plural_lexical_wordcount,1 +0,0,us our we'll let's,first_person_plural_lexical_wordcount,4 +0,0,greyiyck delectabliktz,percept_lexical_wordcount,2 +0,0,screen sand,percept_lexical_wordcount,2 +0,0,sweetness drieqs deoders,percept_lexical_wordcount,3 +0,0,coldedrm,percept_lexical_wordcount,1 +0,0,hear caramelzjw wetly tonguel,percept_lexical_wordcount,4 +0,0,y'all youd you're you'll,second_person_lexical_wordcount,4 +0,0,u thine,second_person_lexical_wordcount,2 +0,0,yall yours u your thoust,second_person_lexical_wordcount,5 +0,0,yall you've youll thee,second_person_lexical_wordcount,4 +0,0,thine you ye,second_person_lexical_wordcount,3 +0,0,responsibly evocative faithfully valiantly illustrious,positive_words_lexical_wordcount,5 +0,0,imaculate vivid likable enjoyable succeed,positive_words_lexical_wordcount,5 +0,0,smitten sharpest rightfully unreal,positive_words_lexical_wordcount,4 +0,0,reaffirmation joy goood speedy self-sufficient,positive_words_lexical_wordcount,5 +0,0,tantalize energize gusto win,positive_words_lexical_wordcount,4 +0,0,we our i me,first_person_lexical_wordcount,4 +0,0,ourselves,first_person_lexical_wordcount,1 +0,0,myself,first_person_lexical_wordcount,1 +0,0,lets my i,first_person_lexical_wordcount,3 +0,0,our,first_person_lexical_wordcount,1 +0,0,but,nltk_english_stopwords_lexical_wordcount,1 +0,0,were was your,nltk_english_stopwords_lexical_wordcount,3 +0,0,any shan it is,nltk_english_stopwords_lexical_wordcount,4 +0,0,our,nltk_english_stopwords_lexical_wordcount,1 +0,0,because an after other,nltk_english_stopwords_lexical_wordcount,4 +0,0,probably,hedge_words_lexical_wordcount,1 +0,0,maybe I guess possibly sort of a little,hedge_words_lexical_wordcount,5 +0,0,a little possibly I think sort of probably,hedge_words_lexical_wordcount,5 +0,0,probably sort of,hedge_words_lexical_wordcount,2 +0,0,I think,hedge_words_lexical_wordcount,1 +0,0,I love dogs,positive_bert,0.932 +0,0,I love dogs!!!,positive_bert,0.980 +0,0,I love dogs,negative_bert,0.012 +0,0,I love dogs!!!,negative_bert,0.004 +0,0,This is relatively neutral,neutral_bert,0.470 +0,0,This is relatively neutral,positive_bert,0.505 +0,0,This is relatively neutral...,neutral_bert,0.492 +0,0,What the heck is going on,negative_bert,0.541 +0,0,What the heck is going on??,negative_bert,0.730 +0,0,!!!,positive_bert,0.917 +0,0,.,neutral_bert,0.577 +0,0,???,neutral_bert,0.713 +0,0,,num_chars,0 +0,0,a,num_chars,1 +0,0,ab,num_chars,2 +0,0,abc,num_chars,3 +0,0,abcd,num_chars,4 +0,0,abcde,num_chars,5 +0,0,abcdef,num_chars,6 +0,1,first,num_messages,1 +0,0,Who is this,num_question_naive,1 +0,0,Who is this. Why is this,num_question_naive,2 +0,0,Who what when where why is this,num_question_naive,1 +0,0,Who is this?,num_question_naive,1 +A,1,able am are,function_word_accommodation,0 +A,2,able am are hello,function_word_accommodation,3 +A,3,able am hello,function_word_accommodation,2 +A,2,able get got,function_word_accommodation,1 +A,5,get,function_word_accommodation,1 +B,1,able am are,content_word_accommodation,0 +B,2,able am are hello,content_word_accommodation,0 +B,3,able am hello yoyo,content_word_accommodation_per_conv,0.3333333 +B,2,hello yoyo,content_word_accommodation_per_conv,0.8333333 +C,1,i i i,first_pronouns_proportion,1 +C,2,i i taco taco,first_pronouns_proportion,0.5 +C,3,.,first_pronouns_proportion,0 +D,1,I went to the store,info_exchange_zscore_conversation,0 +D,2,Bought some groceries for dinner,info_exchange_zscore_conversation,1.2247 +D,3,It's raining today,info_exchange_zscore_conversation,-1.2247 +E,1,I sort of like this,hedge_naive,1 +E,2,I guess this is a little awesome,hedge_naive,1 +E,3,It's raining today,hedge_naive,0 +F,1,what??,NTRI,1 +F,3,sorry excuse me what's your name again?,NTRI,1 +F,1,huh?,NTRI,1 +F,3,pardon?,NTRI,1 +F,3,pardon,NTRI,0 +F,3,say what again?,NTRI,1 +F,3,say again?,NTRI,1 +F,3,say again,NTRI,1 +F,3,what's that?,NTRI,1 +F,3,what is that,NTRI,1 +F,2,this is not funny,NTRI,0 +G,1,what is going on,word_TTR,1 +G,3,what what,word_TTR,0.5 +G,2,what what is that,word_TTR,0.75 +H,1,fantastic difficulty,dale_chall_score,19.5257 +H,3,discover direction different,dale_chall_score,0.1488 +H,3,trying quote random,dale_chall_score,0.1488 +H,3,erase eraser errand every even dig dim dime dine computer,dale_chall_score,5.7115 +H,2,even this is magnificent!,dale_chall_score,7.7824 +H,4,even this is magnificent! even this is magnificent!,dale_chall_score,7.7824 +H,1,fantastic difficulty,dale_chall_classification,difficult +H,3,trying quote random,dale_chall_classification,easy +H,3,erase eraser errand every even dig dim dime dine computer,dale_chall_classification,medium +H,3,discover direction different,dale_chall_classification,easy +H,4,even this is magnificent! even this is magnificent!,dale_chall_classification,difficult +I,1,I am enjoying the weather today!,positivity_zscore_conversation,0.855868 +I,2,Likewise it's beautiful.,positivity_zscore_conversation,0.8156 +I,3,I'm not a fan of the rain.,positivity_zscore_conversation,-1.2577 +I,1,I think it's enchanting.,positivity_zscore_conversation,0.7766 +I,3,Agree to disagree.,positivity_zscore_conversation,-1.19044 +J,1,This conversation is more neutral.,positivity_zscore_conversation,-0.002217 +J,2,How are you doing?,positivity_zscore_conversation,-0.443621 +J,3,I am mainly studying today.,positivity_zscore_conversation,-0.704912 +J,1,Anything fun planned?,positivity_zscore_conversation,1.925224 +J,3,Mostly a trip to the library.,positivity_zscore_conversation,-0.774473 +K,1,This is the same text.,positivity_zscore_conversation, +K,1,This is the same text.,positivity_zscore_conversation, +K,1,This is the same text.,positivity_zscore_conversation, +K,1,This is the same text.,positivity_zscore_conversation, K,1,This is the same text.,positivity_zscore_conversation, \ No newline at end of file diff --git a/tests/data/cleaned_data/test_conv_level.csv b/tests/data/cleaned_data/test_conv_level.csv index d66dfa24..cf5ea0c5 100644 --- a/tests/data/cleaned_data/test_conv_level.csv +++ b/tests/data/cleaned_data/test_conv_level.csv @@ -52,33 +52,33 @@ A, Mary,2020-04-20T18:31:00.125Z, I agree it's also important to take breaks and A, Jessica,2020-04-20T18:31:20.125Z, I'm always struggling to stay motivated any tips?,team_burstiness,-1.0 A, John,2020-04-20T18:31:40.125Z, I find it helpful to set realistic goals and break down large tasks into smaller ones.,team_burstiness,-1.0 A, Mary,2020-04-20T18:32:00.125Z, It's also important to find a study buddy or group to help you stay accountable.,team_burstiness,-1.0 -B, B,, this is four words,gini_coefficient_sum_num_words,0 -B, B,, what about this also,gini_coefficient_sum_num_words,0 -B, B,, i think it is,gini_coefficient_sum_num_words,0 -B, A,, just some random words,gini_coefficient_sum_num_words,0 -B, A,, hello hello hello hello,gini_coefficient_sum_num_words,0 -B, A,, what is up ok,gini_coefficient_sum_num_words,0 -C, A,, this is same character count,gini_coefficient_sum_num_chars,0 -C, A,, this is same character count,gini_coefficient_sum_num_chars,0 -C, A,, this is same character count,gini_coefficient_sum_num_chars,0 -C, X,, this is same character count,gini_coefficient_sum_num_chars,0 -C, X,, this is same character count,gini_coefficient_sum_num_chars,0 -C, X,, this is same character count,gini_coefficient_sum_num_chars,0 -D, A,, this is same message count,gini_coefficient_sum_num_messages,0 -D, B,, this is same message count,gini_coefficient_sum_num_messages,0 -D, C,, this is same message count,gini_coefficient_sum_num_messages,0 -D, D,, this is same message count,gini_coefficient_sum_num_messages,0 -D, E,, this is same message count,gini_coefficient_sum_num_messages,0 -D, F,, this is same message count,gini_coefficient_sum_num_messages,0 -E, A,, i think im the only speaker in this conversation,gini_coefficient_sum_num_words,0.5 -E, A,, yeah i think we're trying to get the gini high,gini_coefficient_sum_num_words,0.5 -E, A,, ill just keep talking!,gini_coefficient_sum_num_words,0.5 -E, X,,,gini_coefficient_sum_num_words,0.5 -E, X,,,gini_coefficient_sum_num_words,0.5 -E, X,,,gini_coefficient_sum_num_words,0.5 -F, A,, i think im the only speaker in this conversation,gini_coefficient_sum_num_chars,0.75 -F, A,, yeah i think we're trying to get the gini high,gini_coefficient_sum_num_chars,0.75 -F, A,, ill just keep talking!,gini_coefficient_sum_num_ chars,0.75 -F, X,,,gini_coefficient_sum_num_chars,0.75 -F, Y,,,gini_coefficient_sum_num_chars,0.75 -F, Z,,,gini_coefficient_sum_num_chars,0.75 \ No newline at end of file +B, B,2020-04-20T18:32:00.125Z, this is four words,gini_coefficient_sum_num_words,0 +B, B,2020-04-20T18:32:00.125Z, what about this also,gini_coefficient_sum_num_words,0 +B, B,2020-04-20T18:32:00.125Z, i think it is,gini_coefficient_sum_num_words,0 +B, A,2020-04-20T18:32:00.125Z, just some random words,gini_coefficient_sum_num_words,0 +B, A,2020-04-20T18:32:00.125Z, hello hello hello hello,gini_coefficient_sum_num_words,0 +B, A,2020-04-20T18:32:00.125Z, what is up ok,gini_coefficient_sum_num_words,0 +C, A,2020-04-20T18:32:00.125Z, this is same character count,gini_coefficient_sum_num_chars,0 +C, A,2020-04-20T18:32:00.125Z, this is same character count,gini_coefficient_sum_num_chars,0 +C, A,2020-04-20T18:32:00.125Z, this is same character count,gini_coefficient_sum_num_chars,0 +C, X,2020-04-20T18:32:00.125Z, this is same character count,gini_coefficient_sum_num_chars,0 +C, X,2020-04-20T18:32:00.125Z, this is same character count,gini_coefficient_sum_num_chars,0 +C, X,2020-04-20T18:32:00.125Z, this is same character count,gini_coefficient_sum_num_chars,0 +D, A,2020-04-20T18:32:00.125Z, this is same message count,gini_coefficient_sum_num_messages,0 +D, B,2020-04-20T18:32:00.125Z, this is same message count,gini_coefficient_sum_num_messages,0 +D, C,2020-04-20T18:32:00.125Z, this is same message count,gini_coefficient_sum_num_messages,0 +D, D,2020-04-20T18:32:00.125Z, this is same message count,gini_coefficient_sum_num_messages,0 +D, E,2020-04-20T18:32:00.125Z, this is same message count,gini_coefficient_sum_num_messages,0 +D, F,2020-04-20T18:32:00.125Z, this is same message count,gini_coefficient_sum_num_messages,0 +E, A,2020-04-20T18:32:00.125Z, i think im the only speaker in this conversation,gini_coefficient_sum_num_words,0.5 +E, A,2020-04-20T18:32:00.125Z, yeah i think we're trying to get the gini high,gini_coefficient_sum_num_words,0.5 +E, A,2020-04-20T18:32:00.125Z, ill just keep talking!,gini_coefficient_sum_num_words,0.5 +E, X,2020-04-20T18:32:00.125Z,,gini_coefficient_sum_num_words,0.5 +E, X,2020-04-20T18:32:00.125Z,,gini_coefficient_sum_num_words,0.5 +E, X,2020-04-20T18:32:00.125Z,,gini_coefficient_sum_num_words,0.5 +F, A,2020-04-20T18:32:00.125Z, i think im the only speaker in this conversation,gini_coefficient_sum_num_chars,0.75 +F, A,2020-04-20T18:32:00.125Z, yeah i think we're trying to get the gini high,gini_coefficient_sum_num_chars,0.75 +F, A,2020-04-20T18:32:00.125Z, ill just keep talking!,gini_coefficient_sum_num_ chars,0.75 +F, X,2020-04-20T18:32:00.125Z,,gini_coefficient_sum_num_chars,0.75 +F, Y,2020-04-20T18:32:00.125Z,,gini_coefficient_sum_num_chars,0.75 +F, Z,2020-04-20T18:32:00.125Z,,gini_coefficient_sum_num_chars,0.75 diff --git a/tests/data/cleaned_data/test_time_pairs_datetime.csv b/tests/data/cleaned_data/test_time_pairs_datetime.csv new file mode 100644 index 00000000..c627f596 --- /dev/null +++ b/tests/data/cleaned_data/test_time_pairs_datetime.csv @@ -0,0 +1,10 @@ +conversation_num,speaker_nickname,timestamp_start,timestamp_end,message,expected_column,expected_value +A,A,2023-01-15 02:30:00,2023-01-15 03:30:00,hello,time_diff,0 +A,A,2023-01-15 03:31:00,2023-01-15 04:30:00,hello!!!,time_diff,60 +A,A,2023-01-17 04:30:00,2023-01-17 07:30:00,hello!!!!!!!,time_diff,172800 +B,A,2023-01-15 02:30:00,2023-01-15 03:30:00,hello,time_diff,0 +B,A,2023-01-15 03:30:00,2023-01-15 04:30:00,hello!!!,time_diff,0 +B,A,2023-01-15 04:30:00,2023-01-17 07:30:00,hello!!!!!!!,time_diff,0 +C,A,2023-01-15 02:30:00,2023-01-15 02:30:00,hello,time_diff,0 +C,A,2023-01-15 02:30:10,2023-01-15 02:30:10,hello!!!,time_diff,10 +C,A,2023-01-15 02:30:11,2023-01-17 07:30:00,hello!!!!!!!,time_diff,1 \ No newline at end of file diff --git a/tests/data/cleaned_data/test_time_pairs_numeric.csv b/tests/data/cleaned_data/test_time_pairs_numeric.csv new file mode 100644 index 00000000..298a5f2d --- /dev/null +++ b/tests/data/cleaned_data/test_time_pairs_numeric.csv @@ -0,0 +1,10 @@ +conversation_num,speaker_nickname,timestamp_start,timestamp_end,message,expected_column,expected_value +A,A,0,0,hello,time_diff,0 +A,A,0,0,hello!!!,time_diff,0 +A,A,0,0,hello!!!!!!!,time_diff,0 +B,A,0,0,hello,time_diff,0 +B,A,10,10,hello!!!,time_diff,0.01 +B,A,20,20,hello!!!!!!!,time_diff,0.01 +C,A,0,0,hello,time_diff,0 +C,A,3600,3600,hello!!!,time_diff,3.6 +C,A,7200,7200,hello!!!!!!!,time_diff,3.6 \ No newline at end of file diff --git a/tests/data/cleaned_data/test_time_pairs_numeric_unit.csv b/tests/data/cleaned_data/test_time_pairs_numeric_unit.csv new file mode 100644 index 00000000..dee94a25 --- /dev/null +++ b/tests/data/cleaned_data/test_time_pairs_numeric_unit.csv @@ -0,0 +1,10 @@ +conversation_num,speaker_nickname,timestamp_start,timestamp_end,timestamp_unit,message,expected_column,expected_value +A,A,0,0,s,hello,time_diff,0 +A,A,0,0,s,hello!!!,time_diff,0 +A,A,0,0,s,hello!!!!!!!,time_diff,0 +B,A,0,0,s,hello,time_diff,0 +B,A,10,10,s,hello!!!,time_diff,10 +B,A,20,20,s,hello!!!!!!!,time_diff,10 +C,A,0,0,s,hello,time_diff,0 +C,A,3600,3600,s,hello!!!,time_diff,3600 +C,A,7200,7200,s,hello!!!!!!!,time_diff,3600 \ No newline at end of file diff --git a/tests/data/cleaned_data/test_timediff_datetime.csv b/tests/data/cleaned_data/test_timediff_datetime.csv new file mode 100644 index 00000000..b57ef326 --- /dev/null +++ b/tests/data/cleaned_data/test_timediff_datetime.csv @@ -0,0 +1,12 @@ +conversation_num,speaker_nickname,timestamp,message,expected_column,expected_value +A,A,2023-01-15 02:30:00,hello,time_diff,0 +A,A,2023-01-15 02:30:10,hello!!!,time_diff,10 +A,A,2023-01-15 02:30:30,hello!!!!!!!,time_diff,20 +B,A,2023-01-15 02:30:00,hello,time_diff,0 +B,A,2023-01-15 02:31:00,hello!!!,time_diff,60 +B,A,2023-01-15 02:33:00,hello!!!!!!!,time_diff,120 +C,A,2023-01-15 02:30:00,hello,time_diff,0 +C,A,2023-01-15 03:30:00,hello!!!,time_diff,3600 +C,A,2023-01-15 05:30:00,hello!!!!!!!,time_diff,7200 +D,A,2023-01-15 02:30:00,hello,time_diff,0 +D,A,2023-01-16 02:30:00,hello!!!,time_diff,86400 \ No newline at end of file diff --git a/tests/data/cleaned_data/test_timediff_numeric.csv b/tests/data/cleaned_data/test_timediff_numeric.csv new file mode 100644 index 00000000..4957ed6a --- /dev/null +++ b/tests/data/cleaned_data/test_timediff_numeric.csv @@ -0,0 +1,10 @@ +conversation_num,speaker_nickname,timestamp,message,expected_column,expected_value +A,A,1,hello,time_diff,0 +A,A,1,hello!!!,time_diff,0 +A,A,1,hello!!!!!!!,time_diff,0 +B,A,1,hello,time_diff,0 +B,A,2,hello!!!,time_diff,0.001 +B,A,2,hello!!!!!!!,time_diff,0 +C,A,1,hello,time_diff,0 +C,A,3,hello!!!,time_diff,0.002 +C,A,5,hello!!!!!!!,time_diff,0.002 \ No newline at end of file diff --git a/tests/data/cleaned_data/test_timediff_numeric_unit.csv b/tests/data/cleaned_data/test_timediff_numeric_unit.csv new file mode 100644 index 00000000..4917bfbf --- /dev/null +++ b/tests/data/cleaned_data/test_timediff_numeric_unit.csv @@ -0,0 +1,10 @@ +conversation_num,speaker_nickname,timestamp,timestamp_unit,message,expected_column,expected_value +A,A,1,h,hello,time_diff,0 +A,A,1,h,hello!!!,time_diff,0 +A,A,1,h,hello!!!!!!!,time_diff,0 +B,A,1,h,hello,time_diff,0 +B,A,2,h,hello!!!,time_diff,3600 +B,A,2,h,hello!!!!!!!,time_diff,0 +C,A,1,h,hello,time_diff,0 +C,A,3,h,hello!!!,time_diff,7200 +C,A,5,h,hello!!!!!!!,time_diff,7200 \ No newline at end of file diff --git a/tests/ipython_notebooks/generate_liwc_tests.ipynb b/tests/ipython_notebooks/generate_liwc_tests.ipynb index e140a992..1edd68ef 100644 --- a/tests/ipython_notebooks/generate_liwc_tests.ipynb +++ b/tests/ipython_notebooks/generate_liwc_tests.ipynb @@ -1 +1,190 @@ -{"cells":[{"cell_type":"code","execution_count":8,"metadata":{},"outputs":[{"name":"stderr","output_type":"stream","text":["/Users/agshruti/Downloads/team-process-map/.venv/lib/python3.11/site-packages/pandas/core/arrays/masked.py:60: UserWarning: Pandas requires version '1.3.6' or newer of 'bottleneck' (version '1.3.5' currently installed).\n"," from pandas.core import (\n"]},{"ename":"FileNotFoundError","evalue":"[Errno 2] No such file or directory: 'feature_engine/features/lexicons_dict.pkl'","output_type":"error","traceback":["\u001b[0;31m---------------------------------------------------------------------------\u001b[0m","\u001b[0;31mFileNotFoundError\u001b[0m Traceback (most recent call last)","Cell \u001b[0;32mIn[8], line 8\u001b[0m\n\u001b[1;32m 5\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m \u001b[38;5;21;01mpathlib\u001b[39;00m \u001b[38;5;28;01mimport\u001b[39;00m Path\n\u001b[1;32m 7\u001b[0m lexicon_pkl_file_path \u001b[38;5;241m=\u001b[39m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mfeature_engine/features/lexicons_dict.pkl\u001b[39m\u001b[38;5;124m\"\u001b[39m\n\u001b[0;32m----> 8\u001b[0m \u001b[38;5;28;01mwith\u001b[39;00m \u001b[38;5;28;43mopen\u001b[39;49m\u001b[43m(\u001b[49m\u001b[43mlexicon_pkl_file_path\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[38;5;124;43mrb\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[43m)\u001b[49m \u001b[38;5;28;01mas\u001b[39;00m lexicons_pickle_file:\n\u001b[1;32m 9\u001b[0m \tlexicons_dict \u001b[38;5;241m=\u001b[39m pickle\u001b[38;5;241m.\u001b[39mload(lexicons_pickle_file)\n","File \u001b[0;32m~/Downloads/team-process-map/.venv/lib/python3.11/site-packages/IPython/core/interactiveshell.py:310\u001b[0m, in \u001b[0;36m_modified_open\u001b[0;34m(file, *args, **kwargs)\u001b[0m\n\u001b[1;32m 303\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m file \u001b[38;5;129;01min\u001b[39;00m {\u001b[38;5;241m0\u001b[39m, \u001b[38;5;241m1\u001b[39m, \u001b[38;5;241m2\u001b[39m}:\n\u001b[1;32m 304\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m \u001b[38;5;167;01mValueError\u001b[39;00m(\n\u001b[1;32m 305\u001b[0m \u001b[38;5;124mf\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mIPython won\u001b[39m\u001b[38;5;124m'\u001b[39m\u001b[38;5;124mt let you open fd=\u001b[39m\u001b[38;5;132;01m{\u001b[39;00mfile\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m by default \u001b[39m\u001b[38;5;124m\"\u001b[39m\n\u001b[1;32m 306\u001b[0m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mas it is likely to crash IPython. If you know what you are doing, \u001b[39m\u001b[38;5;124m\"\u001b[39m\n\u001b[1;32m 307\u001b[0m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124myou can use builtins\u001b[39m\u001b[38;5;124m'\u001b[39m\u001b[38;5;124m open.\u001b[39m\u001b[38;5;124m\"\u001b[39m\n\u001b[1;32m 308\u001b[0m )\n\u001b[0;32m--> 310\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[43mio_open\u001b[49m\u001b[43m(\u001b[49m\u001b[43mfile\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43margs\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43mkwargs\u001b[49m\u001b[43m)\u001b[49m\n","\u001b[0;31mFileNotFoundError\u001b[0m: [Errno 2] No such file or directory: 'feature_engine/features/lexicons_dict.pkl'"]}],"source":["import pickle\n","import re\n","import pandas as pd\n","import os\n","from pathlib import Path\n","\n","lexicon_pkl_file_path = \"feature_engine/features/lexicons_dict.pkl\"\n","with open(lexicon_pkl_file_path, \"rb\") as lexicons_pickle_file:\n","\tlexicons_dict = pickle.load(lexicons_pickle_file)"]},{"cell_type":"code","execution_count":16,"metadata":{},"outputs":[{"name":"stdout","output_type":"stream","text":["['able', 'am', 'are', 'arent', 'be', 'been', 'being', 'can', 'cant', 'cannot', 'could', 'couldnt', 'did', 'didnt', 'do', 'dont', 'get', 'got', 'gotta', 'had', 'hadnt', 'hasnt', 'have', 'havent', 'is', 'isnt', 'may', 'should', 'shouldve', 'shouldnt', 'was', 'were', 'will', 'wont', 'would', 'wouldve', 'wouldnt', 'although', 'and', 'as', 'because', 'cause', 'but', 'if', 'or', 'so', 'then', 'unless', 'whereas', 'while', 'a', 'an', 'each', 'every', 'all', 'lot', 'lots', 'the', 'this', 'those', 'anybody', 'anything', 'anywhere', 'everybodys', 'everyone', 'everything', 'everythings', 'everywhere', 'he', 'hed', 'hes', 'her', 'him', 'himself', 'herself', 'his', 'I', 'Id', 'Ill', 'Im', 'Ive', 'it', 'itd', 'itll', 'its', 'its', 'itself', 'me', 'my', 'mine', 'myself', 'nobody', 'nothing', 'nowhere', 'one', 'ones', 'ones', 'our', 'ours', 'she', 'shell', 'shes', 'shed', 'somebody', 'someone', 'someplace', 'that', 'thatd', 'thatll', 'thats', 'them', 'themselves', 'these', 'they', 'theyd', 'theyll', 'theyre', 'theyve', 'us', 'we', 'wed', 'well', 'were', 'weve', 'what', 'whatd', 'whats', 'whatever', 'when', 'where', 'whered', 'wheres', 'wherever', 'which', 'who', 'whos', 'whom', 'whose', 'why', 'you', 'youd', 'youll', 'youre', 'youve', 'your', 'yours', 'yourself', 'about', 'after', 'against', 'at', 'before', 'by', 'down', 'for', 'from', 'in', 'into', 'near', 'of', 'off', 'on', 'out', 'over', 'than', 'to', 'until', 'up', 'with', 'without', 'ah', 'hi', 'huh', 'like', 'mmhmm', 'oh', 'okay', 'right', 'uh', 'uhhuh', 'um', 'well', 'yeah', 'yup', 'just', 'no', 'not', 'really', 'too', 'very']\n","[['and huh be was itd', 'all anything anybody', 'get for which Id', 'from this then her to', 'herself before himself shes Ive'], [0.05, 0.03, 0.04, 0.05, 0.05]]\n"]}],"source":["import os\n","import random\n","import csv\n","\n","alphabet = [\"a\", \"b\", \"c\", \"d\", \"e\", \"f\", \"g\", \"h\", \"i\", \"j\", \"k\", \"l\", \"m\", \"n\", \"o\", \"p\", \"q\", \"r\", \"s\", \"t\", \"u\", \"v\", \"w\", \"x\", \"y\", \"z\"]\n","filler = [\"Lorem\", \"ipsum\", \"dolor\", \"amet\", \"consectetur\", \"adipiscing\", \"sed\", \"euismod\", \"tempor\"]\n","\n","def generate_random_strings_from_wordlist(wordlist, num_strings, min_words=1, max_words=5):\n"," max_words = min(max_words, len(wordlist))\n"," strings = []\n"," expected_value = []\n"," for _ in range(num_strings):\n"," num_words = random.randint(min_words, max_words)\n"," expected_value.append(num_words/100)\n"," selected_words = random.sample(wordlist, num_words)\n","\n"," # for strings in selected_words that end with *, append a random number of letters to that string\n"," for i in range(len(selected_words)):\n"," selected_words[i] = selected_words[i].strip()\n"," if selected_words[i].endswith(\"*\"):\n"," selected_words[i] = selected_words[i][:-1] + ''.join(random.sample(alphabet, random.randint(1, 5)))\n","\n"," # num_fillers = random.randint(1, 3)\n"," # filler_words = random.sample(filler, num_fillers)\n"," # final_words = random.choices(selected_words) + random.choices(filler_words)\n"," \n"," strings.append(' '.join(selected_words))\n"," return [strings, expected_value]\n","\n","def write_to_csv(strings, expected_vals, wordlist_name, filename='output.csv'):\n"," with open(filename, 'a', newline='') as csvfile:\n"," writer = csv.writer(csvfile)\n"," for string, expected_val in zip(strings, expected_vals):\n"," writer.writerow([0, 0, string, wordlist_name + \"_lexical_per_100\", expected_val])\n","\n","# directory = ['feature_engine/features/lexicons/liwc_lexicons','feature_engine/features/lexicons/liwc_lexicons_small_test','feature_engine/features/lexicons/other_lexicons']\n","parent = Path(os.getcwd()).parent\n","gparent = Path(parent).parent\n","function_words_path = os.path.join(gparent, \"src/team_comm_tools/features/lexicons/function_words.txt\")\n","\n","# directory = [function_words_path]\n","# for d in directory:\n","# for filename in os.listdir(d):\n","with open(function_words_path, encoding=\"mac_roman\") as lexicons:\n"," # if filename.startswith(\".\"):\n"," # continue\n"," wordlist = lexicons.read().splitlines()\n"," print(wordlist)\n"," output = generate_random_strings_from_wordlist(wordlist, num_strings=5)\n"," \n"," # filename = filename[:-4] if filename.endswith(\".txt\") else filename\n"," write_to_csv(output[0], output[1], \"hello.txt\")\n","\n","# manually appended output.csv to test_chat_level.csv"]},{"cell_type":"code","execution_count":11,"metadata":{},"outputs":[{"name":"stdout","output_type":"stream","text":["/Users/agshruti/Downloads/team-process-map/tests/ipython_notebooks\n"]},{"data":{"text/plain":["'/Users/agshruti/Downloads/team-process-map/src/features/lexicons/function_words.txt'"]},"execution_count":11,"metadata":{},"output_type":"execute_result"}],"source":["# module Path not found\n","import os\n","\n","# print current directory\n","print(os.getcwd())\n","\n","# print parent directory\n","parent = Path(os.getcwd()).parent\n","gparent = Path(parent).parent\n","os.path.join(gparent, \"src/features/lexicons/function_words.txt\")\n","\n","# get parent directory\n","# parent_dir = Path(os.getcwd()).parent\n","\n","# # get file within parent directory\n","# file_path = os.path.join(parent_dir, \"output.csv\")\n","\n","# # get file within grandparent directory\n","# grandparent_dir = Path(parent_dir).parent\n","# file_path = os.path.join(grandparent_dir, \"output.csv\")"]},{"cell_type":"code","execution_count":null,"metadata":{},"outputs":[],"source":["# generate function & content word accommodation tests\n"]}],"metadata":{"kernelspec":{"display_name":"Python 3","language":"python","name":"python3"},"language_info":{"codemirror_mode":{"name":"ipython","version":3},"file_extension":".py","mimetype":"text/x-python","name":"python","nbconvert_exporter":"python","pygments_lexer":"ipython3","version":"3.11.6"}},"nbformat":4,"nbformat_minor":2} +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/agshruti/Downloads/team-process-map/.venv/lib/python3.11/site-packages/pandas/core/arrays/masked.py:60: UserWarning: Pandas requires version '1.3.6' or newer of 'bottleneck' (version '1.3.5' currently installed).\n", + " from pandas.core import (\n" + ] + }, + { + "ename": "FileNotFoundError", + "evalue": "[Errno 2] No such file or directory: 'feature_engine/features/lexicons_dict.pkl'", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mFileNotFoundError\u001b[0m Traceback (most recent call last)", + "Cell \u001b[0;32mIn[8], line 8\u001b[0m\n\u001b[1;32m 5\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m \u001b[38;5;21;01mpathlib\u001b[39;00m \u001b[38;5;28;01mimport\u001b[39;00m Path\n\u001b[1;32m 7\u001b[0m lexicon_pkl_file_path \u001b[38;5;241m=\u001b[39m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mfeature_engine/features/lexicons_dict.pkl\u001b[39m\u001b[38;5;124m\"\u001b[39m\n\u001b[0;32m----> 8\u001b[0m \u001b[38;5;28;01mwith\u001b[39;00m \u001b[38;5;28;43mopen\u001b[39;49m\u001b[43m(\u001b[49m\u001b[43mlexicon_pkl_file_path\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[38;5;124;43mrb\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[43m)\u001b[49m \u001b[38;5;28;01mas\u001b[39;00m lexicons_pickle_file:\n\u001b[1;32m 9\u001b[0m \tlexicons_dict \u001b[38;5;241m=\u001b[39m pickle\u001b[38;5;241m.\u001b[39mload(lexicons_pickle_file)\n", + "File \u001b[0;32m~/Downloads/team-process-map/.venv/lib/python3.11/site-packages/IPython/core/interactiveshell.py:310\u001b[0m, in \u001b[0;36m_modified_open\u001b[0;34m(file, *args, **kwargs)\u001b[0m\n\u001b[1;32m 303\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m file \u001b[38;5;129;01min\u001b[39;00m {\u001b[38;5;241m0\u001b[39m, \u001b[38;5;241m1\u001b[39m, \u001b[38;5;241m2\u001b[39m}:\n\u001b[1;32m 304\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m \u001b[38;5;167;01mValueError\u001b[39;00m(\n\u001b[1;32m 305\u001b[0m \u001b[38;5;124mf\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mIPython won\u001b[39m\u001b[38;5;124m'\u001b[39m\u001b[38;5;124mt let you open fd=\u001b[39m\u001b[38;5;132;01m{\u001b[39;00mfile\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m by default \u001b[39m\u001b[38;5;124m\"\u001b[39m\n\u001b[1;32m 306\u001b[0m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mas it is likely to crash IPython. If you know what you are doing, \u001b[39m\u001b[38;5;124m\"\u001b[39m\n\u001b[1;32m 307\u001b[0m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124myou can use builtins\u001b[39m\u001b[38;5;124m'\u001b[39m\u001b[38;5;124m open.\u001b[39m\u001b[38;5;124m\"\u001b[39m\n\u001b[1;32m 308\u001b[0m )\n\u001b[0;32m--> 310\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[43mio_open\u001b[49m\u001b[43m(\u001b[49m\u001b[43mfile\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43margs\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43mkwargs\u001b[49m\u001b[43m)\u001b[49m\n", + "\u001b[0;31mFileNotFoundError\u001b[0m: [Errno 2] No such file or directory: 'feature_engine/features/lexicons_dict.pkl'" + ] + } + ], + "source": [ + "import pickle\n", + "import re\n", + "import pandas as pd\n", + "import os\n", + "from pathlib import Path\n", + "\n", + "lexicon_pkl_file_path = \"feature_engine/features/lexicons_dict.pkl\"\n", + "with open(lexicon_pkl_file_path, \"rb\") as lexicons_pickle_file:\n", + "\tlexicons_dict = pickle.load(lexicons_pickle_file)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['able', 'am', 'are', 'arent', 'be', 'been', 'being', 'can', 'cant', 'cannot', 'could', 'couldnt', 'did', 'didnt', 'do', 'dont', 'get', 'got', 'gotta', 'had', 'hadnt', 'hasnt', 'have', 'havent', 'is', 'isnt', 'may', 'should', 'shouldve', 'shouldnt', 'was', 'were', 'will', 'wont', 'would', 'wouldve', 'wouldnt', 'although', 'and', 'as', 'because', 'cause', 'but', 'if', 'or', 'so', 'then', 'unless', 'whereas', 'while', 'a', 'an', 'each', 'every', 'all', 'lot', 'lots', 'the', 'this', 'those', 'anybody', 'anything', 'anywhere', 'everybodys', 'everyone', 'everything', 'everythings', 'everywhere', 'he', 'hed', 'hes', 'her', 'him', 'himself', 'herself', 'his', 'I', 'Id', 'Ill', 'Im', 'Ive', 'it', 'itd', 'itll', 'its', 'its', 'itself', 'me', 'my', 'mine', 'myself', 'nobody', 'nothing', 'nowhere', 'one', 'ones', 'ones', 'our', 'ours', 'she', 'shell', 'shes', 'shed', 'somebody', 'someone', 'someplace', 'that', 'thatd', 'thatll', 'thats', 'them', 'themselves', 'these', 'they', 'theyd', 'theyll', 'theyre', 'theyve', 'us', 'we', 'wed', 'well', 'were', 'weve', 'what', 'whatd', 'whats', 'whatever', 'when', 'where', 'whered', 'wheres', 'wherever', 'which', 'who', 'whos', 'whom', 'whose', 'why', 'you', 'youd', 'youll', 'youre', 'youve', 'your', 'yours', 'yourself', 'about', 'after', 'against', 'at', 'before', 'by', 'down', 'for', 'from', 'in', 'into', 'near', 'of', 'off', 'on', 'out', 'over', 'than', 'to', 'until', 'up', 'with', 'without', 'ah', 'hi', 'huh', 'like', 'mmhmm', 'oh', 'okay', 'right', 'uh', 'uhhuh', 'um', 'well', 'yeah', 'yup', 'just', 'no', 'not', 'really', 'too', 'very']\n", + "[['and huh be was itd', 'all anything anybody', 'get for which Id', 'from this then her to', 'herself before himself shes Ive'], [0.05, 0.03, 0.04, 0.05, 0.05]]\n" + ] + } + ], + "source": [ + "import os\n", + "import random\n", + "import csv\n", + "\n", + "alphabet = [\"a\", \"b\", \"c\", \"d\", \"e\", \"f\", \"g\", \"h\", \"i\", \"j\", \"k\", \"l\", \"m\", \"n\", \"o\", \"p\", \"q\", \"r\", \"s\", \"t\", \"u\", \"v\", \"w\", \"x\", \"y\", \"z\"]\n", + "filler = [\"Lorem\", \"ipsum\", \"dolor\", \"amet\", \"consectetur\", \"adipiscing\", \"sed\", \"euismod\", \"tempor\"]\n", + "\n", + "def generate_random_strings_from_wordlist(wordlist, num_strings, min_words=1, max_words=5):\n", + " max_words = min(max_words, len(wordlist))\n", + " strings = []\n", + " expected_value = []\n", + " for _ in range(num_strings):\n", + " num_words = random.randint(min_words, max_words)\n", + " expected_value.append(num_words/100)\n", + " selected_words = random.sample(wordlist, num_words)\n", + "\n", + " # for strings in selected_words that end with *, append a random number of letters to that string\n", + " for i in range(len(selected_words)):\n", + " selected_words[i] = selected_words[i].strip()\n", + " if selected_words[i].endswith(\"*\"):\n", + " selected_words[i] = selected_words[i][:-1] + ''.join(random.sample(alphabet, random.randint(1, 5)))\n", + "\n", + " num_fillers = random.randint(1, 3)\n", + " filler_words = random.sample(filler, num_fillers)\n", + " final_words = random.choices(selected_words) + random.choices(filler_words)\n", + " random.shuffle(final_words)\n", + " \n", + " strings.append(' '.join(final_words))\n", + " return [strings, expected_value]\n", + "\n", + "def write_to_csv(strings, expected_vals, wordlist_name, filename='output.csv'):\n", + " with open(filename, 'a', newline='') as csvfile:\n", + " writer = csv.writer(csvfile)\n", + " for string, expected_val in zip(strings, expected_vals):\n", + " writer.writerow([0, 0, string, wordlist_name + \"_lexical_per_100\", expected_val])\n", + "\n", + "directory = ['feature_engine/features/lexicons/liwc_lexicons','feature_engine/features/lexicons/liwc_lexicons_small_test','feature_engine/features/lexicons/other_lexicons']\n", + "parent = Path(os.getcwd()).parent\n", + "gparent = Path(parent).parent\n", + "# function_words_path = os.path.join(gparent, \"src/team_comm_tools/features/lexicons/function_words.txt\")\n", + "\n", + "# directory = [function_words_path]\n", + "for d in directory:\n", + " for filename in os.listdir(d):\n", + " if filename.startswith(\".\"):\n", + " continue\n", + " with open(filename, encoding=\"mac_roman\") as lexicons:\n", + " \n", + " wordlist = lexicons.read().splitlines()\n", + " output = generate_random_strings_from_wordlist(wordlist, num_strings=5)\n", + " \n", + " filename = filename[:-4] if filename.endswith(\".txt\") else filename\n", + " write_to_csv(output[0], output[1], filename)\n", + "\n", + "# manually appended output.csv to test_chat_level.csv" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "/Users/agshruti/Downloads/team-process-map/tests/ipython_notebooks\n" + ] + }, + { + "data": { + "text/plain": [ + "'/Users/agshruti/Downloads/team-process-map/src/features/lexicons/function_words.txt'" + ] + }, + "execution_count": 11, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# module Path not found\n", + "import os\n", + "\n", + "# print current directory\n", + "print(os.getcwd())\n", + "\n", + "# print parent directory\n", + "parent = Path(os.getcwd()).parent\n", + "gparent = Path(parent).parent\n", + "os.path.join(gparent, \"src/features/lexicons/function_words.txt\")\n", + "\n", + "# get parent directory\n", + "# parent_dir = Path(os.getcwd()).parent\n", + "\n", + "# # get file within parent directory\n", + "# file_path = os.path.join(parent_dir, \"output.csv\")\n", + "\n", + "# # get file within grandparent directory\n", + "# grandparent_dir = Path(parent_dir).parent\n", + "# file_path = os.path.join(grandparent_dir, \"output.csv\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# generate function & content word accommodation tests\n" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.11.6" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/tests/ipython_notebooks/helper.ipynb b/tests/ipython_notebooks/helper_positivity_zscore.ipynb similarity index 100% rename from tests/ipython_notebooks/helper.ipynb rename to tests/ipython_notebooks/helper_positivity_zscore.ipynb diff --git a/tests/ipython_notebooks/helper_ts.ipynb b/tests/ipython_notebooks/helper_ts.ipynb new file mode 100644 index 00000000..6418c3b9 --- /dev/null +++ b/tests/ipython_notebooks/helper_ts.ipynb @@ -0,0 +1,2950 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [], + "source": [ + "from team_comm_tools.feature_dict import feature_dict\n", + "import pytest\n", + "import pandas as pd\n", + "import numpy as np\n", + "from numpy import nan\n", + "import logging\n", + "import itertools\n", + "\n", + "test_chat_df = pd.read_csv(\"./output/chat/test_chat_level_chat.csv\")\n", + "test_conv_df = pd.read_csv(\"./output/conv/test_conv_level_conv.csv\")\n", + "test_chat_complex_df = pd.read_csv(\n", + " \"./output/chat/test_chat_level_chat_complex.csv\")\n", + "test_conv_complex_df = pd.read_csv(\n", + " \"./output/conv/test_conv_level_conv_complex.csv\")\n", + "test_conv_complex_df_ts = pd.read_csv(\n", + " \"./output/conv/test_conv_level_conv_complex_ts.csv\")\n", + "test_forward_flow_df = pd.read_csv(\"./output/chat/test_forward_flow_chat.csv\")\n", + "\n", + "# Import the Feature Dictionary\n", + "\n", + "chat_features = [feature_dict[feature][\"columns\"]\n", + " for feature in feature_dict.keys() if feature_dict[feature][\"level\"] == \"Chat\"]\n", + "conversation_features = [feature_dict[feature][\"columns\"] for feature in feature_dict.keys(\n", + ") if feature_dict[feature][\"level\"] == \"Conversation\"]\n", + "\n", + "num_features_chat = len(list(itertools.chain(*chat_features)))\n", + "num_features_conv = len(list(itertools.chain(*conversation_features))) - 3\n", + "\n", + "\n", + "num_tested_chat = test_chat_df['expected_column'].nunique() + test_chat_complex_df['feature'].nunique() + test_forward_flow_df['feature'].nunique()\n", + "test_chat = pd.concat([test_chat_df['expected_column'], test_chat_complex_df['feature'], test_forward_flow_df['feature']])\n", + "test_chat = test_chat.drop_duplicates()" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": {}, + "outputs": [], + "source": [ + "hi = pd.concat([test_chat_df['expected_column'].drop_duplicates(), test_chat_complex_df['feature'].drop_duplicates(), test_forward_flow_df['feature'].drop_duplicates()])\n", + "hi.to_csv(\"hi.csv\")" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/agshruti/Downloads/team-process-map/.venv/lib/python3.11/site-packages/pandas/core/arrays/masked.py:60: UserWarning: Pandas requires version '1.3.6' or newer of 'bottleneck' (version '1.3.5' currently installed).\n", + " from pandas.core import (\n" + ] + }, + { + "data": { + "text/html": [ + "
                                        \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
                                        conversation_numgini_coefficient_sum_num_messages
                                        0A0.041667
                                        1B0.000000
                                        2C0.297101
                                        3D0.066667
                                        4E0.000000
                                        5F0.000000
                                        6G0.000000
                                        7H0.000000
                                        8I0.000000
                                        9J0.000000
                                        10K0.000000
                                        11L0.000000
                                        12M0.000000
                                        13N0.000000
                                        14O0.000000
                                        15P0.000000
                                        16Q0.000000
                                        17R0.000000
                                        18S0.000000
                                        19T0.000000
                                        20U0.000000
                                        21conversation_10.066667
                                        22conversation_20.066667
                                        23conversation_50.066667
                                        24conversation_30.066667
                                        25conversation_40.066667
                                        26conversation_60.148148
                                        27conversation_150.066667
                                        28conversation_160.066667
                                        29conversation_90.066667
                                        30AA0.000000
                                        31AAA0.000000
                                        32AAAA0.000000
                                        33BB0.000000
                                        34BBB0.000000
                                        35BBBB0.000000
                                        36CC0.166667
                                        37CCC0.300000
                                        \n", + "
                                        " + ], + "text/plain": [ + " conversation_num gini_coefficient_sum_num_messages\n", + "0 A 0.041667\n", + "1 B 0.000000\n", + "2 C 0.297101\n", + "3 D 0.066667\n", + "4 E 0.000000\n", + "5 F 0.000000\n", + "6 G 0.000000\n", + "7 H 0.000000\n", + "8 I 0.000000\n", + "9 J 0.000000\n", + "10 K 0.000000\n", + "11 L 0.000000\n", + "12 M 0.000000\n", + "13 N 0.000000\n", + "14 O 0.000000\n", + "15 P 0.000000\n", + "16 Q 0.000000\n", + "17 R 0.000000\n", + "18 S 0.000000\n", + "19 T 0.000000\n", + "20 U 0.000000\n", + "21 conversation_1 0.066667\n", + "22 conversation_2 0.066667\n", + "23 conversation_5 0.066667\n", + "24 conversation_3 0.066667\n", + "25 conversation_4 0.066667\n", + "26 conversation_6 0.148148\n", + "27 conversation_15 0.066667\n", + "28 conversation_16 0.066667\n", + "29 conversation_9 0.066667\n", + "30 AA 0.000000\n", + "31 AAA 0.000000\n", + "32 AAAA 0.000000\n", + "33 BB 0.000000\n", + "34 BBB 0.000000\n", + "35 BBBB 0.000000\n", + "36 CC 0.166667\n", + "37 CCC 0.300000" + ] + }, + "execution_count": 1, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "import pandas as pd\n", + "test_conv_complex_df = pd.read_csv(\"./output/conv/test_conv_level_conv_complex.csv\")\n", + "test_conv_complex_df[['conversation_num', \"gini_coefficient_sum_num_messages\"]]" + ] + }, + { + "cell_type": "code", + "execution_count": 94, + "metadata": {}, + "outputs": [], + "source": [ + "def get_function_words_in_message(text, function_word_reference):\n", + " \"\"\"\n", + " Extract the function words & non-functions words from a message\n", + "\n", + " Args:\n", + " text (str): The input text to be analyzed.\n", + " function_word_reference (list): A list of function words to reference against.\n", + "\n", + " Returns:\n", + " list: A list of function words found in the input text.\n", + " \"\"\"\n", + " if (pd.isna(text)):\n", + " return []\n", + " return [x for x in text.split() if x in function_word_reference]\n", + "\n", + "\n", + "def get_content_words_in_message(text, function_word_reference):\n", + " \"\"\"\n", + " Extract the non-function words in a given message.\n", + "\n", + " Args:\n", + " text (str): The input text to be analyzed.\n", + " function_word_reference (list): A list of function words to reference against.\n", + "\n", + " Returns:\n", + " list: A list of content words found in the input text.\n", + " \"\"\"\n", + " if (pd.isna(text)):\n", + " return []\n", + " return [x for x in text.split() if x not in function_word_reference]\n", + "\n", + "\n", + "def mimic_words(df, on_column, conversation_id):\n", + " \"\"\"\n", + " Return a list of words that are also used in the other's previous turn.\n", + "\n", + " Args:\n", + " df (DataFrame): The dataset that removed all punctuations.\n", + " on_column (str): The column that we want to find mimicry on.\n", + " conversation_id (str): The column name that should be selected as the conversation ID.\n", + "\n", + " Returns:\n", + " list: A list of lists, where each sublist contains words mimicked from the previous turn.\n", + " \"\"\"\n", + " word_mimic = [[]]\n", + " for i in range(1, len(df)):\n", + " # only do this if they're in the same conversation\n", + " if df.loc[i, conversation_id] == df.loc[i-1, conversation_id]:\n", + " word_mimic.append([x for x in df.loc[i, on_column]\n", + " if x in df.loc[(i-1), on_column]])\n", + " else:\n", + " word_mimic.append([])\n", + " return word_mimic\n", + "\n", + "\n", + "def function_mimicry_score(function_mimic_words):\n", + " \"\"\"\n", + " Compute the number of mimic words for function words by simply counting the number of mimic words using len().\n", + "\n", + " Args:\n", + " function_mimic_words (list): Each entry under the `function_word_mimicry` column.\n", + "\n", + " Returns:\n", + " int: The number of function mimic words.\n", + " \"\"\"\n", + " return len(function_mimic_words)\n", + "\n", + "\n", + "def compute_frequency(df, on_column):\n", + " \"\"\"\n", + " Compute the frequency of each content word across the whole dataset.\n", + "\n", + " Args:\n", + " df (DataFrame): The input dataframe.\n", + " on_column (str): The column with which we calculate content word frequency.\n", + "\n", + " Returns:\n", + " dict: A dictionary with content words as keys and their frequencies as values.\n", + " \"\"\"\n", + " df_temp = df.copy()\n", + " df_temp.reset_index(drop=True, inplace=True)\n", + " return (dict(pd.Series(np.concatenate(df_temp[on_column])).value_counts()))\n", + "\n", + "\n", + "def computeTF(column_mimc, frequency_dict):\n", + " \"\"\"\n", + " Compute the term frequency of each content mimic word, then sum them up.\n", + "\n", + " Args:\n", + " column_mimc (list): Each entry under the `content_word_mimicry` column.\n", + " frequency_dict (dict): A dictionary of content word frequency across the dataset.\n", + "\n", + " Returns:\n", + " float: The sum of term frequencies for the content mimic words.\n", + " \"\"\"\n", + " tfdict = {}\n", + " wf = pd.Series(column_mimc, dtype='str').value_counts()\n", + " for i in wf.index:\n", + " tfdict[i] = wf[i]/frequency_dict[i]\n", + " return sum(tfdict.values())\n", + "\n", + "\n", + "def Content_mimicry_score(df, column_count_frequency, column_count_mimic):\n", + " \"\"\"\n", + " Combine the steps to compute the content word mimicry score.\n", + "\n", + " Args:\n", + " df (DataFrame): The input dataframe.\n", + " column_count_frequency (str): The column with content words to calculate frequency.\n", + " column_count_mimic (str): The column with content word mimicry.\n", + "\n", + " Returns:\n", + " Series: A series with content word accommodation scores.\n", + "\n", + " \"\"\"\n", + " # Compute the frequency of each content word across the whole dataset\n", + " ContWordFreq = compute_frequency(df, column_count_frequency)\n", + " # Compute the content_mimicry_score\n", + " return df[column_count_mimic].apply(lambda x: computeTF(x, ContWordFreq)) \n", + " # content_mimic_scores = []\n", + " # for conv in df['conversation_num'].unique():\n", + " # df_conv = df[df['conversation_num'] == conv] \n", + " # ContWordFreq = compute_frequency(df_conv, column_count_frequency)\n", + " # content_mimic_scores.append(df_conv[column_count_mimic].apply(lambda x: computeTF(x, ContWordFreq)).tolist())\n", + " # return [item for sublist in content_mimic_scores for item in sublist]" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "import os\n", + "import numpy as np\n", + "\n", + "def get_function_words():\n", + " \"\"\"\n", + " Returns the list of function words according to Ranganath, Jurafsky, and McFarland (2013).\n", + "\n", + " Reference: https://web.stanford.edu/~jurafsky/pubs/ranganath2013.pdf\n", + "\n", + " :return: A list of function words.\n", + " :rtype: list\n", + " \"\"\"\n", + " # current_dir = os.path.dirname(__file__)\n", + " function_word_file_path = \"../src/team_comm_tools/features/lexicons/function_words.txt\"\n", + " # function_word_file_path = os.path.abspath(function_word_file_path)\n", + "\n", + " with open(function_word_file_path, 'r') as file:\n", + " function_word_list = [line.strip() for line in file]\n", + " return function_word_list\n", + "\n", + "func = get_function_words()" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/agshruti/Downloads/team-process-map/.venv/lib/python3.11/site-packages/pandas/core/arrays/masked.py:60: UserWarning: Pandas requires version '1.3.6' or newer of 'bottleneck' (version '1.3.5' currently installed).\n", + " from pandas.core import (\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "{'hello': 1, 'i': 1, 'fish': 1, 'sentence': 1, 'has': 1, 'five': 1, 'words': 1}\n", + "{'hello': 1, 'i': 1, 'fish': 1, 'sentence': 1, 'has': 1, 'five': 1, 'words': 1}\n", + "{'hello': 1, '4': 1, 'word': 1}\n", + "{'hello': 1, '4': 1, 'word': 1}\n", + "{}\n", + "{'point': 14, 'multiple': 12, 'i': 11, '4': 11, 'super': 11, 'long': 11, 'takes': 11, 'lines': 11, 'quotes': 4, 'said': 4, 'quote': 4, 'line': 3, 'third': 3, 'here': 3, 'parentheses': 3, 'item': 3, 'respond': 2, 'linenthis': 2, 'linehere': 2, 'reply': 2, 'elsenthis': 2, 'quoting': 2, 'return': 2, 'character': 2, '1': 2, 'single': 2, '3': 2, 'many': 2, 'hello': 2, 'use': 2, 'httpswwwexamplenet': 2, 'sure': 2, 'two': 2, 'read': 2, 'httpswwwexamplecom': 2, 'httpswwwexamplecouk': 2, 'httpswwwexampleorg': 2, 'httpswwwexampleca': 2, 'way': 1, 'definitely': 1, 'teacher': 1, 'best': 1, 'english': 1, 'according': 1, 'other': 1, 'inside': 1, 'confidently': 1, 'moments': 1, 'properly': 1, 'closed': 1, 'nest': 1, 'useful': 1, 'sometimes': 1, 'replied': 1, 'people': 1, 'there': 1, 'thiking': 1, 'im': 1, 'text': 1, 'gt': 1, 'quotei': 1, 'making': 1, 'hellogoodbye': 1, 'maybe': 1, 'gts': 1, 'hmwhat': 1, 'only': 1, 'believe': 1, 'put': 1, 'periodsor': 1, 'gtgt': 1, 'periods': 1, 'carat': 1, 'overboard': 1, 'sentence': 1, 'againi': 1, 'some': 1, 'went': 1, 'carriage': 1, 'gretzky': 1, 'googlecom': 1, 'italicized': 1, 'bolded': 1, 'italics': 1, 'bold': 1, 'uuser2test': 1, 'uuser1test': 1, 'uuser2': 1, 'uuser1': 1, 'amazoncom': 1, 'wikipediaorg': 1, 'httpexampleorg': 1, 'wayne': 1, 'linkhttpsexamplecom': 1, 'check': 1, 'nine': 1, 'eight': 1, 'seven': 1, 'six': 1, 'five': 1, 'four': 1, 'three': 1, 'test': 1, 'uneven': 1, 'terms': 1, 'emphasis': 1, '1n': 1, 'take': 1, 'shots': 1, '100': 1, 'miss': 1, 'another': 1, 'heres': 1, 'newline': 1, 'instead': 1, 'world': 1, 'valuerusing': 1, 'kind': 1, 'different': 1, 'withra': 1, 'new': 1, 'second': 1, 'first': 1, 'secondn3': 1, 'firstn2': 1, '2': 1, 'arguments': 1, '2n': 1, '11342798': 1}\n", + "{'point': 14, 'multiple': 12, 'i': 11, '4': 11, 'super': 11, 'long': 11, 'takes': 11, 'lines': 11, 'quotes': 4, 'said': 4, 'quote': 4, 'line': 3, 'third': 3, 'here': 3, 'parentheses': 3, 'item': 3, 'respond': 2, 'linenthis': 2, 'linehere': 2, 'reply': 2, 'elsenthis': 2, 'quoting': 2, 'return': 2, 'character': 2, '1': 2, 'single': 2, '3': 2, 'many': 2, 'hello': 2, 'use': 2, 'httpswwwexamplenet': 2, 'sure': 2, 'two': 2, 'read': 2, 'httpswwwexamplecom': 2, 'httpswwwexamplecouk': 2, 'httpswwwexampleorg': 2, 'httpswwwexampleca': 2, 'way': 1, 'definitely': 1, 'teacher': 1, 'best': 1, 'english': 1, 'according': 1, 'other': 1, 'inside': 1, 'confidently': 1, 'moments': 1, 'properly': 1, 'closed': 1, 'nest': 1, 'useful': 1, 'sometimes': 1, 'replied': 1, 'people': 1, 'there': 1, 'thiking': 1, 'im': 1, 'text': 1, 'gt': 1, 'quotei': 1, 'making': 1, 'hellogoodbye': 1, 'maybe': 1, 'gts': 1, 'hmwhat': 1, 'only': 1, 'believe': 1, 'put': 1, 'periodsor': 1, 'gtgt': 1, 'periods': 1, 'carat': 1, 'overboard': 1, 'sentence': 1, 'againi': 1, 'some': 1, 'went': 1, 'carriage': 1, 'gretzky': 1, 'googlecom': 1, 'italicized': 1, 'bolded': 1, 'italics': 1, 'bold': 1, 'uuser2test': 1, 'uuser1test': 1, 'uuser2': 1, 'uuser1': 1, 'amazoncom': 1, 'wikipediaorg': 1, 'httpexampleorg': 1, 'wayne': 1, 'linkhttpsexamplecom': 1, 'check': 1, 'nine': 1, 'eight': 1, 'seven': 1, 'six': 1, 'five': 1, 'four': 1, 'three': 1, 'test': 1, 'uneven': 1, 'terms': 1, 'emphasis': 1, '1n': 1, 'take': 1, 'shots': 1, '100': 1, 'miss': 1, 'another': 1, 'heres': 1, 'newline': 1, 'instead': 1, 'world': 1, 'valuerusing': 1, 'kind': 1, 'different': 1, 'withra': 1, 'new': 1, 'second': 1, 'first': 1, 'secondn3': 1, 'firstn2': 1, '2': 1, 'arguments': 1, '2n': 1, '11342798': 1}\n", + "{'point': 14, 'multiple': 12, 'i': 11, '4': 11, 'super': 11, 'long': 11, 'takes': 11, 'lines': 11, 'quotes': 4, 'said': 4, 'quote': 4, 'line': 3, 'third': 3, 'here': 3, 'parentheses': 3, 'item': 3, 'respond': 2, 'linenthis': 2, 'linehere': 2, 'reply': 2, 'elsenthis': 2, 'quoting': 2, 'return': 2, 'character': 2, '1': 2, 'single': 2, '3': 2, 'many': 2, 'hello': 2, 'use': 2, 'httpswwwexamplenet': 2, 'sure': 2, 'two': 2, 'read': 2, 'httpswwwexamplecom': 2, 'httpswwwexamplecouk': 2, 'httpswwwexampleorg': 2, 'httpswwwexampleca': 2, 'way': 1, 'definitely': 1, 'teacher': 1, 'best': 1, 'english': 1, 'according': 1, 'other': 1, 'inside': 1, 'confidently': 1, 'moments': 1, 'properly': 1, 'closed': 1, 'nest': 1, 'useful': 1, 'sometimes': 1, 'replied': 1, 'people': 1, 'there': 1, 'thiking': 1, 'im': 1, 'text': 1, 'gt': 1, 'quotei': 1, 'making': 1, 'hellogoodbye': 1, 'maybe': 1, 'gts': 1, 'hmwhat': 1, 'only': 1, 'believe': 1, 'put': 1, 'periodsor': 1, 'gtgt': 1, 'periods': 1, 'carat': 1, 'overboard': 1, 'sentence': 1, 'againi': 1, 'some': 1, 'went': 1, 'carriage': 1, 'gretzky': 1, 'googlecom': 1, 'italicized': 1, 'bolded': 1, 'italics': 1, 'bold': 1, 'uuser2test': 1, 'uuser1test': 1, 'uuser2': 1, 'uuser1': 1, 'amazoncom': 1, 'wikipediaorg': 1, 'httpexampleorg': 1, 'wayne': 1, 'linkhttpsexamplecom': 1, 'check': 1, 'nine': 1, 'eight': 1, 'seven': 1, 'six': 1, 'five': 1, 'four': 1, 'three': 1, 'test': 1, 'uneven': 1, 'terms': 1, 'emphasis': 1, '1n': 1, 'take': 1, 'shots': 1, '100': 1, 'miss': 1, 'another': 1, 'heres': 1, 'newline': 1, 'instead': 1, 'world': 1, 'valuerusing': 1, 'kind': 1, 'different': 1, 'withra': 1, 'new': 1, 'second': 1, 'first': 1, 'secondn3': 1, 'firstn2': 1, '2': 1, 'arguments': 1, '2n': 1, '11342798': 1}\n", + "{'point': 14, 'multiple': 12, 'i': 11, '4': 11, 'super': 11, 'long': 11, 'takes': 11, 'lines': 11, 'quotes': 4, 'said': 4, 'quote': 4, 'line': 3, 'third': 3, 'here': 3, 'parentheses': 3, 'item': 3, 'respond': 2, 'linenthis': 2, 'linehere': 2, 'reply': 2, 'elsenthis': 2, 'quoting': 2, 'return': 2, 'character': 2, '1': 2, 'single': 2, '3': 2, 'many': 2, 'hello': 2, 'use': 2, 'httpswwwexamplenet': 2, 'sure': 2, 'two': 2, 'read': 2, 'httpswwwexamplecom': 2, 'httpswwwexamplecouk': 2, 'httpswwwexampleorg': 2, 'httpswwwexampleca': 2, 'way': 1, 'definitely': 1, 'teacher': 1, 'best': 1, 'english': 1, 'according': 1, 'other': 1, 'inside': 1, 'confidently': 1, 'moments': 1, 'properly': 1, 'closed': 1, 'nest': 1, 'useful': 1, 'sometimes': 1, 'replied': 1, 'people': 1, 'there': 1, 'thiking': 1, 'im': 1, 'text': 1, 'gt': 1, 'quotei': 1, 'making': 1, 'hellogoodbye': 1, 'maybe': 1, 'gts': 1, 'hmwhat': 1, 'only': 1, 'believe': 1, 'put': 1, 'periodsor': 1, 'gtgt': 1, 'periods': 1, 'carat': 1, 'overboard': 1, 'sentence': 1, 'againi': 1, 'some': 1, 'went': 1, 'carriage': 1, 'gretzky': 1, 'googlecom': 1, 'italicized': 1, 'bolded': 1, 'italics': 1, 'bold': 1, 'uuser2test': 1, 'uuser1test': 1, 'uuser2': 1, 'uuser1': 1, 'amazoncom': 1, 'wikipediaorg': 1, 'httpexampleorg': 1, 'wayne': 1, 'linkhttpsexamplecom': 1, 'check': 1, 'nine': 1, 'eight': 1, 'seven': 1, 'six': 1, 'five': 1, 'four': 1, 'three': 1, 'test': 1, 'uneven': 1, 'terms': 1, 'emphasis': 1, '1n': 1, 'take': 1, 'shots': 1, '100': 1, 'miss': 1, 'another': 1, 'heres': 1, 'newline': 1, 'instead': 1, 'world': 1, 'valuerusing': 1, 'kind': 1, 'different': 1, 'withra': 1, 'new': 1, 'second': 1, 'first': 1, 'secondn3': 1, 'firstn2': 1, '2': 1, 'arguments': 1, '2n': 1, '11342798': 1}\n", + "{'point': 14, 'multiple': 12, 'i': 11, '4': 11, 'super': 11, 'long': 11, 'takes': 11, 'lines': 11, 'quotes': 4, 'said': 4, 'quote': 4, 'line': 3, 'third': 3, 'here': 3, 'parentheses': 3, 'item': 3, 'respond': 2, 'linenthis': 2, 'linehere': 2, 'reply': 2, 'elsenthis': 2, 'quoting': 2, 'return': 2, 'character': 2, '1': 2, 'single': 2, '3': 2, 'many': 2, 'hello': 2, 'use': 2, 'httpswwwexamplenet': 2, 'sure': 2, 'two': 2, 'read': 2, 'httpswwwexamplecom': 2, 'httpswwwexamplecouk': 2, 'httpswwwexampleorg': 2, 'httpswwwexampleca': 2, 'way': 1, 'definitely': 1, 'teacher': 1, 'best': 1, 'english': 1, 'according': 1, 'other': 1, 'inside': 1, 'confidently': 1, 'moments': 1, 'properly': 1, 'closed': 1, 'nest': 1, 'useful': 1, 'sometimes': 1, 'replied': 1, 'people': 1, 'there': 1, 'thiking': 1, 'im': 1, 'text': 1, 'gt': 1, 'quotei': 1, 'making': 1, 'hellogoodbye': 1, 'maybe': 1, 'gts': 1, 'hmwhat': 1, 'only': 1, 'believe': 1, 'put': 1, 'periodsor': 1, 'gtgt': 1, 'periods': 1, 'carat': 1, 'overboard': 1, 'sentence': 1, 'againi': 1, 'some': 1, 'went': 1, 'carriage': 1, 'gretzky': 1, 'googlecom': 1, 'italicized': 1, 'bolded': 1, 'italics': 1, 'bold': 1, 'uuser2test': 1, 'uuser1test': 1, 'uuser2': 1, 'uuser1': 1, 'amazoncom': 1, 'wikipediaorg': 1, 'httpexampleorg': 1, 'wayne': 1, 'linkhttpsexamplecom': 1, 'check': 1, 'nine': 1, 'eight': 1, 'seven': 1, 'six': 1, 'five': 1, 'four': 1, 'three': 1, 'test': 1, 'uneven': 1, 'terms': 1, 'emphasis': 1, '1n': 1, 'take': 1, 'shots': 1, '100': 1, 'miss': 1, 'another': 1, 'heres': 1, 'newline': 1, 'instead': 1, 'world': 1, 'valuerusing': 1, 'kind': 1, 'different': 1, 'withra': 1, 'new': 1, 'second': 1, 'first': 1, 'secondn3': 1, 'firstn2': 1, '2': 1, 'arguments': 1, '2n': 1, '11342798': 1}\n", + "{'point': 14, 'multiple': 12, 'i': 11, '4': 11, 'super': 11, 'long': 11, 'takes': 11, 'lines': 11, 'quotes': 4, 'said': 4, 'quote': 4, 'line': 3, 'third': 3, 'here': 3, 'parentheses': 3, 'item': 3, 'respond': 2, 'linenthis': 2, 'linehere': 2, 'reply': 2, 'elsenthis': 2, 'quoting': 2, 'return': 2, 'character': 2, '1': 2, 'single': 2, '3': 2, 'many': 2, 'hello': 2, 'use': 2, 'httpswwwexamplenet': 2, 'sure': 2, 'two': 2, 'read': 2, 'httpswwwexamplecom': 2, 'httpswwwexamplecouk': 2, 'httpswwwexampleorg': 2, 'httpswwwexampleca': 2, 'way': 1, 'definitely': 1, 'teacher': 1, 'best': 1, 'english': 1, 'according': 1, 'other': 1, 'inside': 1, 'confidently': 1, 'moments': 1, 'properly': 1, 'closed': 1, 'nest': 1, 'useful': 1, 'sometimes': 1, 'replied': 1, 'people': 1, 'there': 1, 'thiking': 1, 'im': 1, 'text': 1, 'gt': 1, 'quotei': 1, 'making': 1, 'hellogoodbye': 1, 'maybe': 1, 'gts': 1, 'hmwhat': 1, 'only': 1, 'believe': 1, 'put': 1, 'periodsor': 1, 'gtgt': 1, 'periods': 1, 'carat': 1, 'overboard': 1, 'sentence': 1, 'againi': 1, 'some': 1, 'went': 1, 'carriage': 1, 'gretzky': 1, 'googlecom': 1, 'italicized': 1, 'bolded': 1, 'italics': 1, 'bold': 1, 'uuser2test': 1, 'uuser1test': 1, 'uuser2': 1, 'uuser1': 1, 'amazoncom': 1, 'wikipediaorg': 1, 'httpexampleorg': 1, 'wayne': 1, 'linkhttpsexamplecom': 1, 'check': 1, 'nine': 1, 'eight': 1, 'seven': 1, 'six': 1, 'five': 1, 'four': 1, 'three': 1, 'test': 1, 'uneven': 1, 'terms': 1, 'emphasis': 1, '1n': 1, 'take': 1, 'shots': 1, '100': 1, 'miss': 1, 'another': 1, 'heres': 1, 'newline': 1, 'instead': 1, 'world': 1, 'valuerusing': 1, 'kind': 1, 'different': 1, 'withra': 1, 'new': 1, 'second': 1, 'first': 1, 'secondn3': 1, 'firstn2': 1, '2': 1, 'arguments': 1, '2n': 1, '11342798': 1}\n", + "{'point': 14, 'multiple': 12, 'i': 11, '4': 11, 'super': 11, 'long': 11, 'takes': 11, 'lines': 11, 'quotes': 4, 'said': 4, 'quote': 4, 'line': 3, 'third': 3, 'here': 3, 'parentheses': 3, 'item': 3, 'respond': 2, 'linenthis': 2, 'linehere': 2, 'reply': 2, 'elsenthis': 2, 'quoting': 2, 'return': 2, 'character': 2, '1': 2, 'single': 2, '3': 2, 'many': 2, 'hello': 2, 'use': 2, 'httpswwwexamplenet': 2, 'sure': 2, 'two': 2, 'read': 2, 'httpswwwexamplecom': 2, 'httpswwwexamplecouk': 2, 'httpswwwexampleorg': 2, 'httpswwwexampleca': 2, 'way': 1, 'definitely': 1, 'teacher': 1, 'best': 1, 'english': 1, 'according': 1, 'other': 1, 'inside': 1, 'confidently': 1, 'moments': 1, 'properly': 1, 'closed': 1, 'nest': 1, 'useful': 1, 'sometimes': 1, 'replied': 1, 'people': 1, 'there': 1, 'thiking': 1, 'im': 1, 'text': 1, 'gt': 1, 'quotei': 1, 'making': 1, 'hellogoodbye': 1, 'maybe': 1, 'gts': 1, 'hmwhat': 1, 'only': 1, 'believe': 1, 'put': 1, 'periodsor': 1, 'gtgt': 1, 'periods': 1, 'carat': 1, 'overboard': 1, 'sentence': 1, 'againi': 1, 'some': 1, 'went': 1, 'carriage': 1, 'gretzky': 1, 'googlecom': 1, 'italicized': 1, 'bolded': 1, 'italics': 1, 'bold': 1, 'uuser2test': 1, 'uuser1test': 1, 'uuser2': 1, 'uuser1': 1, 'amazoncom': 1, 'wikipediaorg': 1, 'httpexampleorg': 1, 'wayne': 1, 'linkhttpsexamplecom': 1, 'check': 1, 'nine': 1, 'eight': 1, 'seven': 1, 'six': 1, 'five': 1, 'four': 1, 'three': 1, 'test': 1, 'uneven': 1, 'terms': 1, 'emphasis': 1, '1n': 1, 'take': 1, 'shots': 1, '100': 1, 'miss': 1, 'another': 1, 'heres': 1, 'newline': 1, 'instead': 1, 'world': 1, 'valuerusing': 1, 'kind': 1, 'different': 1, 'withra': 1, 'new': 1, 'second': 1, 'first': 1, 'secondn3': 1, 'firstn2': 1, '2': 1, 'arguments': 1, '2n': 1, '11342798': 1}\n", + "{'point': 14, 'multiple': 12, 'i': 11, '4': 11, 'super': 11, 'long': 11, 'takes': 11, 'lines': 11, 'quotes': 4, 'said': 4, 'quote': 4, 'line': 3, 'third': 3, 'here': 3, 'parentheses': 3, 'item': 3, 'respond': 2, 'linenthis': 2, 'linehere': 2, 'reply': 2, 'elsenthis': 2, 'quoting': 2, 'return': 2, 'character': 2, '1': 2, 'single': 2, '3': 2, 'many': 2, 'hello': 2, 'use': 2, 'httpswwwexamplenet': 2, 'sure': 2, 'two': 2, 'read': 2, 'httpswwwexamplecom': 2, 'httpswwwexamplecouk': 2, 'httpswwwexampleorg': 2, 'httpswwwexampleca': 2, 'way': 1, 'definitely': 1, 'teacher': 1, 'best': 1, 'english': 1, 'according': 1, 'other': 1, 'inside': 1, 'confidently': 1, 'moments': 1, 'properly': 1, 'closed': 1, 'nest': 1, 'useful': 1, 'sometimes': 1, 'replied': 1, 'people': 1, 'there': 1, 'thiking': 1, 'im': 1, 'text': 1, 'gt': 1, 'quotei': 1, 'making': 1, 'hellogoodbye': 1, 'maybe': 1, 'gts': 1, 'hmwhat': 1, 'only': 1, 'believe': 1, 'put': 1, 'periodsor': 1, 'gtgt': 1, 'periods': 1, 'carat': 1, 'overboard': 1, 'sentence': 1, 'againi': 1, 'some': 1, 'went': 1, 'carriage': 1, 'gretzky': 1, 'googlecom': 1, 'italicized': 1, 'bolded': 1, 'italics': 1, 'bold': 1, 'uuser2test': 1, 'uuser1test': 1, 'uuser2': 1, 'uuser1': 1, 'amazoncom': 1, 'wikipediaorg': 1, 'httpexampleorg': 1, 'wayne': 1, 'linkhttpsexamplecom': 1, 'check': 1, 'nine': 1, 'eight': 1, 'seven': 1, 'six': 1, 'five': 1, 'four': 1, 'three': 1, 'test': 1, 'uneven': 1, 'terms': 1, 'emphasis': 1, '1n': 1, 'take': 1, 'shots': 1, '100': 1, 'miss': 1, 'another': 1, 'heres': 1, 'newline': 1, 'instead': 1, 'world': 1, 'valuerusing': 1, 'kind': 1, 'different': 1, 'withra': 1, 'new': 1, 'second': 1, 'first': 1, 'secondn3': 1, 'firstn2': 1, '2': 1, 'arguments': 1, '2n': 1, '11342798': 1}\n", + "{'point': 14, 'multiple': 12, 'i': 11, '4': 11, 'super': 11, 'long': 11, 'takes': 11, 'lines': 11, 'quotes': 4, 'said': 4, 'quote': 4, 'line': 3, 'third': 3, 'here': 3, 'parentheses': 3, 'item': 3, 'respond': 2, 'linenthis': 2, 'linehere': 2, 'reply': 2, 'elsenthis': 2, 'quoting': 2, 'return': 2, 'character': 2, '1': 2, 'single': 2, '3': 2, 'many': 2, 'hello': 2, 'use': 2, 'httpswwwexamplenet': 2, 'sure': 2, 'two': 2, 'read': 2, 'httpswwwexamplecom': 2, 'httpswwwexamplecouk': 2, 'httpswwwexampleorg': 2, 'httpswwwexampleca': 2, 'way': 1, 'definitely': 1, 'teacher': 1, 'best': 1, 'english': 1, 'according': 1, 'other': 1, 'inside': 1, 'confidently': 1, 'moments': 1, 'properly': 1, 'closed': 1, 'nest': 1, 'useful': 1, 'sometimes': 1, 'replied': 1, 'people': 1, 'there': 1, 'thiking': 1, 'im': 1, 'text': 1, 'gt': 1, 'quotei': 1, 'making': 1, 'hellogoodbye': 1, 'maybe': 1, 'gts': 1, 'hmwhat': 1, 'only': 1, 'believe': 1, 'put': 1, 'periodsor': 1, 'gtgt': 1, 'periods': 1, 'carat': 1, 'overboard': 1, 'sentence': 1, 'againi': 1, 'some': 1, 'went': 1, 'carriage': 1, 'gretzky': 1, 'googlecom': 1, 'italicized': 1, 'bolded': 1, 'italics': 1, 'bold': 1, 'uuser2test': 1, 'uuser1test': 1, 'uuser2': 1, 'uuser1': 1, 'amazoncom': 1, 'wikipediaorg': 1, 'httpexampleorg': 1, 'wayne': 1, 'linkhttpsexamplecom': 1, 'check': 1, 'nine': 1, 'eight': 1, 'seven': 1, 'six': 1, 'five': 1, 'four': 1, 'three': 1, 'test': 1, 'uneven': 1, 'terms': 1, 'emphasis': 1, '1n': 1, 'take': 1, 'shots': 1, '100': 1, 'miss': 1, 'another': 1, 'heres': 1, 'newline': 1, 'instead': 1, 'world': 1, 'valuerusing': 1, 'kind': 1, 'different': 1, 'withra': 1, 'new': 1, 'second': 1, 'first': 1, 'secondn3': 1, 'firstn2': 1, '2': 1, 'arguments': 1, '2n': 1, '11342798': 1}\n", + "{'point': 14, 'multiple': 12, 'i': 11, '4': 11, 'super': 11, 'long': 11, 'takes': 11, 'lines': 11, 'quotes': 4, 'said': 4, 'quote': 4, 'line': 3, 'third': 3, 'here': 3, 'parentheses': 3, 'item': 3, 'respond': 2, 'linenthis': 2, 'linehere': 2, 'reply': 2, 'elsenthis': 2, 'quoting': 2, 'return': 2, 'character': 2, '1': 2, 'single': 2, '3': 2, 'many': 2, 'hello': 2, 'use': 2, 'httpswwwexamplenet': 2, 'sure': 2, 'two': 2, 'read': 2, 'httpswwwexamplecom': 2, 'httpswwwexamplecouk': 2, 'httpswwwexampleorg': 2, 'httpswwwexampleca': 2, 'way': 1, 'definitely': 1, 'teacher': 1, 'best': 1, 'english': 1, 'according': 1, 'other': 1, 'inside': 1, 'confidently': 1, 'moments': 1, 'properly': 1, 'closed': 1, 'nest': 1, 'useful': 1, 'sometimes': 1, 'replied': 1, 'people': 1, 'there': 1, 'thiking': 1, 'im': 1, 'text': 1, 'gt': 1, 'quotei': 1, 'making': 1, 'hellogoodbye': 1, 'maybe': 1, 'gts': 1, 'hmwhat': 1, 'only': 1, 'believe': 1, 'put': 1, 'periodsor': 1, 'gtgt': 1, 'periods': 1, 'carat': 1, 'overboard': 1, 'sentence': 1, 'againi': 1, 'some': 1, 'went': 1, 'carriage': 1, 'gretzky': 1, 'googlecom': 1, 'italicized': 1, 'bolded': 1, 'italics': 1, 'bold': 1, 'uuser2test': 1, 'uuser1test': 1, 'uuser2': 1, 'uuser1': 1, 'amazoncom': 1, 'wikipediaorg': 1, 'httpexampleorg': 1, 'wayne': 1, 'linkhttpsexamplecom': 1, 'check': 1, 'nine': 1, 'eight': 1, 'seven': 1, 'six': 1, 'five': 1, 'four': 1, 'three': 1, 'test': 1, 'uneven': 1, 'terms': 1, 'emphasis': 1, '1n': 1, 'take': 1, 'shots': 1, '100': 1, 'miss': 1, 'another': 1, 'heres': 1, 'newline': 1, 'instead': 1, 'world': 1, 'valuerusing': 1, 'kind': 1, 'different': 1, 'withra': 1, 'new': 1, 'second': 1, 'first': 1, 'secondn3': 1, 'firstn2': 1, '2': 1, 'arguments': 1, '2n': 1, '11342798': 1}\n", + "{'point': 14, 'multiple': 12, 'i': 11, '4': 11, 'super': 11, 'long': 11, 'takes': 11, 'lines': 11, 'quotes': 4, 'said': 4, 'quote': 4, 'line': 3, 'third': 3, 'here': 3, 'parentheses': 3, 'item': 3, 'respond': 2, 'linenthis': 2, 'linehere': 2, 'reply': 2, 'elsenthis': 2, 'quoting': 2, 'return': 2, 'character': 2, '1': 2, 'single': 2, '3': 2, 'many': 2, 'hello': 2, 'use': 2, 'httpswwwexamplenet': 2, 'sure': 2, 'two': 2, 'read': 2, 'httpswwwexamplecom': 2, 'httpswwwexamplecouk': 2, 'httpswwwexampleorg': 2, 'httpswwwexampleca': 2, 'way': 1, 'definitely': 1, 'teacher': 1, 'best': 1, 'english': 1, 'according': 1, 'other': 1, 'inside': 1, 'confidently': 1, 'moments': 1, 'properly': 1, 'closed': 1, 'nest': 1, 'useful': 1, 'sometimes': 1, 'replied': 1, 'people': 1, 'there': 1, 'thiking': 1, 'im': 1, 'text': 1, 'gt': 1, 'quotei': 1, 'making': 1, 'hellogoodbye': 1, 'maybe': 1, 'gts': 1, 'hmwhat': 1, 'only': 1, 'believe': 1, 'put': 1, 'periodsor': 1, 'gtgt': 1, 'periods': 1, 'carat': 1, 'overboard': 1, 'sentence': 1, 'againi': 1, 'some': 1, 'went': 1, 'carriage': 1, 'gretzky': 1, 'googlecom': 1, 'italicized': 1, 'bolded': 1, 'italics': 1, 'bold': 1, 'uuser2test': 1, 'uuser1test': 1, 'uuser2': 1, 'uuser1': 1, 'amazoncom': 1, 'wikipediaorg': 1, 'httpexampleorg': 1, 'wayne': 1, 'linkhttpsexamplecom': 1, 'check': 1, 'nine': 1, 'eight': 1, 'seven': 1, 'six': 1, 'five': 1, 'four': 1, 'three': 1, 'test': 1, 'uneven': 1, 'terms': 1, 'emphasis': 1, '1n': 1, 'take': 1, 'shots': 1, '100': 1, 'miss': 1, 'another': 1, 'heres': 1, 'newline': 1, 'instead': 1, 'world': 1, 'valuerusing': 1, 'kind': 1, 'different': 1, 'withra': 1, 'new': 1, 'second': 1, 'first': 1, 'secondn3': 1, 'firstn2': 1, '2': 1, 'arguments': 1, '2n': 1, '11342798': 1}\n", + "{'point': 14, 'multiple': 12, 'i': 11, '4': 11, 'super': 11, 'long': 11, 'takes': 11, 'lines': 11, 'quotes': 4, 'said': 4, 'quote': 4, 'line': 3, 'third': 3, 'here': 3, 'parentheses': 3, 'item': 3, 'respond': 2, 'linenthis': 2, 'linehere': 2, 'reply': 2, 'elsenthis': 2, 'quoting': 2, 'return': 2, 'character': 2, '1': 2, 'single': 2, '3': 2, 'many': 2, 'hello': 2, 'use': 2, 'httpswwwexamplenet': 2, 'sure': 2, 'two': 2, 'read': 2, 'httpswwwexamplecom': 2, 'httpswwwexamplecouk': 2, 'httpswwwexampleorg': 2, 'httpswwwexampleca': 2, 'way': 1, 'definitely': 1, 'teacher': 1, 'best': 1, 'english': 1, 'according': 1, 'other': 1, 'inside': 1, 'confidently': 1, 'moments': 1, 'properly': 1, 'closed': 1, 'nest': 1, 'useful': 1, 'sometimes': 1, 'replied': 1, 'people': 1, 'there': 1, 'thiking': 1, 'im': 1, 'text': 1, 'gt': 1, 'quotei': 1, 'making': 1, 'hellogoodbye': 1, 'maybe': 1, 'gts': 1, 'hmwhat': 1, 'only': 1, 'believe': 1, 'put': 1, 'periodsor': 1, 'gtgt': 1, 'periods': 1, 'carat': 1, 'overboard': 1, 'sentence': 1, 'againi': 1, 'some': 1, 'went': 1, 'carriage': 1, 'gretzky': 1, 'googlecom': 1, 'italicized': 1, 'bolded': 1, 'italics': 1, 'bold': 1, 'uuser2test': 1, 'uuser1test': 1, 'uuser2': 1, 'uuser1': 1, 'amazoncom': 1, 'wikipediaorg': 1, 'httpexampleorg': 1, 'wayne': 1, 'linkhttpsexamplecom': 1, 'check': 1, 'nine': 1, 'eight': 1, 'seven': 1, 'six': 1, 'five': 1, 'four': 1, 'three': 1, 'test': 1, 'uneven': 1, 'terms': 1, 'emphasis': 1, '1n': 1, 'take': 1, 'shots': 1, '100': 1, 'miss': 1, 'another': 1, 'heres': 1, 'newline': 1, 'instead': 1, 'world': 1, 'valuerusing': 1, 'kind': 1, 'different': 1, 'withra': 1, 'new': 1, 'second': 1, 'first': 1, 'secondn3': 1, 'firstn2': 1, '2': 1, 'arguments': 1, '2n': 1, '11342798': 1}\n", + "{'point': 14, 'multiple': 12, 'i': 11, '4': 11, 'super': 11, 'long': 11, 'takes': 11, 'lines': 11, 'quotes': 4, 'said': 4, 'quote': 4, 'line': 3, 'third': 3, 'here': 3, 'parentheses': 3, 'item': 3, 'respond': 2, 'linenthis': 2, 'linehere': 2, 'reply': 2, 'elsenthis': 2, 'quoting': 2, 'return': 2, 'character': 2, '1': 2, 'single': 2, '3': 2, 'many': 2, 'hello': 2, 'use': 2, 'httpswwwexamplenet': 2, 'sure': 2, 'two': 2, 'read': 2, 'httpswwwexamplecom': 2, 'httpswwwexamplecouk': 2, 'httpswwwexampleorg': 2, 'httpswwwexampleca': 2, 'way': 1, 'definitely': 1, 'teacher': 1, 'best': 1, 'english': 1, 'according': 1, 'other': 1, 'inside': 1, 'confidently': 1, 'moments': 1, 'properly': 1, 'closed': 1, 'nest': 1, 'useful': 1, 'sometimes': 1, 'replied': 1, 'people': 1, 'there': 1, 'thiking': 1, 'im': 1, 'text': 1, 'gt': 1, 'quotei': 1, 'making': 1, 'hellogoodbye': 1, 'maybe': 1, 'gts': 1, 'hmwhat': 1, 'only': 1, 'believe': 1, 'put': 1, 'periodsor': 1, 'gtgt': 1, 'periods': 1, 'carat': 1, 'overboard': 1, 'sentence': 1, 'againi': 1, 'some': 1, 'went': 1, 'carriage': 1, 'gretzky': 1, 'googlecom': 1, 'italicized': 1, 'bolded': 1, 'italics': 1, 'bold': 1, 'uuser2test': 1, 'uuser1test': 1, 'uuser2': 1, 'uuser1': 1, 'amazoncom': 1, 'wikipediaorg': 1, 'httpexampleorg': 1, 'wayne': 1, 'linkhttpsexamplecom': 1, 'check': 1, 'nine': 1, 'eight': 1, 'seven': 1, 'six': 1, 'five': 1, 'four': 1, 'three': 1, 'test': 1, 'uneven': 1, 'terms': 1, 'emphasis': 1, '1n': 1, 'take': 1, 'shots': 1, '100': 1, 'miss': 1, 'another': 1, 'heres': 1, 'newline': 1, 'instead': 1, 'world': 1, 'valuerusing': 1, 'kind': 1, 'different': 1, 'withra': 1, 'new': 1, 'second': 1, 'first': 1, 'secondn3': 1, 'firstn2': 1, '2': 1, 'arguments': 1, '2n': 1, '11342798': 1}\n", + "{'point': 14, 'multiple': 12, 'i': 11, '4': 11, 'super': 11, 'long': 11, 'takes': 11, 'lines': 11, 'quotes': 4, 'said': 4, 'quote': 4, 'line': 3, 'third': 3, 'here': 3, 'parentheses': 3, 'item': 3, 'respond': 2, 'linenthis': 2, 'linehere': 2, 'reply': 2, 'elsenthis': 2, 'quoting': 2, 'return': 2, 'character': 2, '1': 2, 'single': 2, '3': 2, 'many': 2, 'hello': 2, 'use': 2, 'httpswwwexamplenet': 2, 'sure': 2, 'two': 2, 'read': 2, 'httpswwwexamplecom': 2, 'httpswwwexamplecouk': 2, 'httpswwwexampleorg': 2, 'httpswwwexampleca': 2, 'way': 1, 'definitely': 1, 'teacher': 1, 'best': 1, 'english': 1, 'according': 1, 'other': 1, 'inside': 1, 'confidently': 1, 'moments': 1, 'properly': 1, 'closed': 1, 'nest': 1, 'useful': 1, 'sometimes': 1, 'replied': 1, 'people': 1, 'there': 1, 'thiking': 1, 'im': 1, 'text': 1, 'gt': 1, 'quotei': 1, 'making': 1, 'hellogoodbye': 1, 'maybe': 1, 'gts': 1, 'hmwhat': 1, 'only': 1, 'believe': 1, 'put': 1, 'periodsor': 1, 'gtgt': 1, 'periods': 1, 'carat': 1, 'overboard': 1, 'sentence': 1, 'againi': 1, 'some': 1, 'went': 1, 'carriage': 1, 'gretzky': 1, 'googlecom': 1, 'italicized': 1, 'bolded': 1, 'italics': 1, 'bold': 1, 'uuser2test': 1, 'uuser1test': 1, 'uuser2': 1, 'uuser1': 1, 'amazoncom': 1, 'wikipediaorg': 1, 'httpexampleorg': 1, 'wayne': 1, 'linkhttpsexamplecom': 1, 'check': 1, 'nine': 1, 'eight': 1, 'seven': 1, 'six': 1, 'five': 1, 'four': 1, 'three': 1, 'test': 1, 'uneven': 1, 'terms': 1, 'emphasis': 1, '1n': 1, 'take': 1, 'shots': 1, '100': 1, 'miss': 1, 'another': 1, 'heres': 1, 'newline': 1, 'instead': 1, 'world': 1, 'valuerusing': 1, 'kind': 1, 'different': 1, 'withra': 1, 'new': 1, 'second': 1, 'first': 1, 'secondn3': 1, 'firstn2': 1, '2': 1, 'arguments': 1, '2n': 1, '11342798': 1}\n", + "{'point': 14, 'multiple': 12, 'i': 11, '4': 11, 'super': 11, 'long': 11, 'takes': 11, 'lines': 11, 'quotes': 4, 'said': 4, 'quote': 4, 'line': 3, 'third': 3, 'here': 3, 'parentheses': 3, 'item': 3, 'respond': 2, 'linenthis': 2, 'linehere': 2, 'reply': 2, 'elsenthis': 2, 'quoting': 2, 'return': 2, 'character': 2, '1': 2, 'single': 2, '3': 2, 'many': 2, 'hello': 2, 'use': 2, 'httpswwwexamplenet': 2, 'sure': 2, 'two': 2, 'read': 2, 'httpswwwexamplecom': 2, 'httpswwwexamplecouk': 2, 'httpswwwexampleorg': 2, 'httpswwwexampleca': 2, 'way': 1, 'definitely': 1, 'teacher': 1, 'best': 1, 'english': 1, 'according': 1, 'other': 1, 'inside': 1, 'confidently': 1, 'moments': 1, 'properly': 1, 'closed': 1, 'nest': 1, 'useful': 1, 'sometimes': 1, 'replied': 1, 'people': 1, 'there': 1, 'thiking': 1, 'im': 1, 'text': 1, 'gt': 1, 'quotei': 1, 'making': 1, 'hellogoodbye': 1, 'maybe': 1, 'gts': 1, 'hmwhat': 1, 'only': 1, 'believe': 1, 'put': 1, 'periodsor': 1, 'gtgt': 1, 'periods': 1, 'carat': 1, 'overboard': 1, 'sentence': 1, 'againi': 1, 'some': 1, 'went': 1, 'carriage': 1, 'gretzky': 1, 'googlecom': 1, 'italicized': 1, 'bolded': 1, 'italics': 1, 'bold': 1, 'uuser2test': 1, 'uuser1test': 1, 'uuser2': 1, 'uuser1': 1, 'amazoncom': 1, 'wikipediaorg': 1, 'httpexampleorg': 1, 'wayne': 1, 'linkhttpsexamplecom': 1, 'check': 1, 'nine': 1, 'eight': 1, 'seven': 1, 'six': 1, 'five': 1, 'four': 1, 'three': 1, 'test': 1, 'uneven': 1, 'terms': 1, 'emphasis': 1, '1n': 1, 'take': 1, 'shots': 1, '100': 1, 'miss': 1, 'another': 1, 'heres': 1, 'newline': 1, 'instead': 1, 'world': 1, 'valuerusing': 1, 'kind': 1, 'different': 1, 'withra': 1, 'new': 1, 'second': 1, 'first': 1, 'secondn3': 1, 'firstn2': 1, '2': 1, 'arguments': 1, '2n': 1, '11342798': 1}\n", + "{'point': 14, 'multiple': 12, 'i': 11, '4': 11, 'super': 11, 'long': 11, 'takes': 11, 'lines': 11, 'quotes': 4, 'said': 4, 'quote': 4, 'line': 3, 'third': 3, 'here': 3, 'parentheses': 3, 'item': 3, 'respond': 2, 'linenthis': 2, 'linehere': 2, 'reply': 2, 'elsenthis': 2, 'quoting': 2, 'return': 2, 'character': 2, '1': 2, 'single': 2, '3': 2, 'many': 2, 'hello': 2, 'use': 2, 'httpswwwexamplenet': 2, 'sure': 2, 'two': 2, 'read': 2, 'httpswwwexamplecom': 2, 'httpswwwexamplecouk': 2, 'httpswwwexampleorg': 2, 'httpswwwexampleca': 2, 'way': 1, 'definitely': 1, 'teacher': 1, 'best': 1, 'english': 1, 'according': 1, 'other': 1, 'inside': 1, 'confidently': 1, 'moments': 1, 'properly': 1, 'closed': 1, 'nest': 1, 'useful': 1, 'sometimes': 1, 'replied': 1, 'people': 1, 'there': 1, 'thiking': 1, 'im': 1, 'text': 1, 'gt': 1, 'quotei': 1, 'making': 1, 'hellogoodbye': 1, 'maybe': 1, 'gts': 1, 'hmwhat': 1, 'only': 1, 'believe': 1, 'put': 1, 'periodsor': 1, 'gtgt': 1, 'periods': 1, 'carat': 1, 'overboard': 1, 'sentence': 1, 'againi': 1, 'some': 1, 'went': 1, 'carriage': 1, 'gretzky': 1, 'googlecom': 1, 'italicized': 1, 'bolded': 1, 'italics': 1, 'bold': 1, 'uuser2test': 1, 'uuser1test': 1, 'uuser2': 1, 'uuser1': 1, 'amazoncom': 1, 'wikipediaorg': 1, 'httpexampleorg': 1, 'wayne': 1, 'linkhttpsexamplecom': 1, 'check': 1, 'nine': 1, 'eight': 1, 'seven': 1, 'six': 1, 'five': 1, 'four': 1, 'three': 1, 'test': 1, 'uneven': 1, 'terms': 1, 'emphasis': 1, '1n': 1, 'take': 1, 'shots': 1, '100': 1, 'miss': 1, 'another': 1, 'heres': 1, 'newline': 1, 'instead': 1, 'world': 1, 'valuerusing': 1, 'kind': 1, 'different': 1, 'withra': 1, 'new': 1, 'second': 1, 'first': 1, 'secondn3': 1, 'firstn2': 1, '2': 1, 'arguments': 1, '2n': 1, '11342798': 1}\n", + "{'point': 14, 'multiple': 12, 'i': 11, '4': 11, 'super': 11, 'long': 11, 'takes': 11, 'lines': 11, 'quotes': 4, 'said': 4, 'quote': 4, 'line': 3, 'third': 3, 'here': 3, 'parentheses': 3, 'item': 3, 'respond': 2, 'linenthis': 2, 'linehere': 2, 'reply': 2, 'elsenthis': 2, 'quoting': 2, 'return': 2, 'character': 2, '1': 2, 'single': 2, '3': 2, 'many': 2, 'hello': 2, 'use': 2, 'httpswwwexamplenet': 2, 'sure': 2, 'two': 2, 'read': 2, 'httpswwwexamplecom': 2, 'httpswwwexamplecouk': 2, 'httpswwwexampleorg': 2, 'httpswwwexampleca': 2, 'way': 1, 'definitely': 1, 'teacher': 1, 'best': 1, 'english': 1, 'according': 1, 'other': 1, 'inside': 1, 'confidently': 1, 'moments': 1, 'properly': 1, 'closed': 1, 'nest': 1, 'useful': 1, 'sometimes': 1, 'replied': 1, 'people': 1, 'there': 1, 'thiking': 1, 'im': 1, 'text': 1, 'gt': 1, 'quotei': 1, 'making': 1, 'hellogoodbye': 1, 'maybe': 1, 'gts': 1, 'hmwhat': 1, 'only': 1, 'believe': 1, 'put': 1, 'periodsor': 1, 'gtgt': 1, 'periods': 1, 'carat': 1, 'overboard': 1, 'sentence': 1, 'againi': 1, 'some': 1, 'went': 1, 'carriage': 1, 'gretzky': 1, 'googlecom': 1, 'italicized': 1, 'bolded': 1, 'italics': 1, 'bold': 1, 'uuser2test': 1, 'uuser1test': 1, 'uuser2': 1, 'uuser1': 1, 'amazoncom': 1, 'wikipediaorg': 1, 'httpexampleorg': 1, 'wayne': 1, 'linkhttpsexamplecom': 1, 'check': 1, 'nine': 1, 'eight': 1, 'seven': 1, 'six': 1, 'five': 1, 'four': 1, 'three': 1, 'test': 1, 'uneven': 1, 'terms': 1, 'emphasis': 1, '1n': 1, 'take': 1, 'shots': 1, '100': 1, 'miss': 1, 'another': 1, 'heres': 1, 'newline': 1, 'instead': 1, 'world': 1, 'valuerusing': 1, 'kind': 1, 'different': 1, 'withra': 1, 'new': 1, 'second': 1, 'first': 1, 'secondn3': 1, 'firstn2': 1, '2': 1, 'arguments': 1, '2n': 1, '11342798': 1}\n", + "{'point': 14, 'multiple': 12, 'i': 11, '4': 11, 'super': 11, 'long': 11, 'takes': 11, 'lines': 11, 'quotes': 4, 'said': 4, 'quote': 4, 'line': 3, 'third': 3, 'here': 3, 'parentheses': 3, 'item': 3, 'respond': 2, 'linenthis': 2, 'linehere': 2, 'reply': 2, 'elsenthis': 2, 'quoting': 2, 'return': 2, 'character': 2, '1': 2, 'single': 2, '3': 2, 'many': 2, 'hello': 2, 'use': 2, 'httpswwwexamplenet': 2, 'sure': 2, 'two': 2, 'read': 2, 'httpswwwexamplecom': 2, 'httpswwwexamplecouk': 2, 'httpswwwexampleorg': 2, 'httpswwwexampleca': 2, 'way': 1, 'definitely': 1, 'teacher': 1, 'best': 1, 'english': 1, 'according': 1, 'other': 1, 'inside': 1, 'confidently': 1, 'moments': 1, 'properly': 1, 'closed': 1, 'nest': 1, 'useful': 1, 'sometimes': 1, 'replied': 1, 'people': 1, 'there': 1, 'thiking': 1, 'im': 1, 'text': 1, 'gt': 1, 'quotei': 1, 'making': 1, 'hellogoodbye': 1, 'maybe': 1, 'gts': 1, 'hmwhat': 1, 'only': 1, 'believe': 1, 'put': 1, 'periodsor': 1, 'gtgt': 1, 'periods': 1, 'carat': 1, 'overboard': 1, 'sentence': 1, 'againi': 1, 'some': 1, 'went': 1, 'carriage': 1, 'gretzky': 1, 'googlecom': 1, 'italicized': 1, 'bolded': 1, 'italics': 1, 'bold': 1, 'uuser2test': 1, 'uuser1test': 1, 'uuser2': 1, 'uuser1': 1, 'amazoncom': 1, 'wikipediaorg': 1, 'httpexampleorg': 1, 'wayne': 1, 'linkhttpsexamplecom': 1, 'check': 1, 'nine': 1, 'eight': 1, 'seven': 1, 'six': 1, 'five': 1, 'four': 1, 'three': 1, 'test': 1, 'uneven': 1, 'terms': 1, 'emphasis': 1, '1n': 1, 'take': 1, 'shots': 1, '100': 1, 'miss': 1, 'another': 1, 'heres': 1, 'newline': 1, 'instead': 1, 'world': 1, 'valuerusing': 1, 'kind': 1, 'different': 1, 'withra': 1, 'new': 1, 'second': 1, 'first': 1, 'secondn3': 1, 'firstn2': 1, '2': 1, 'arguments': 1, '2n': 1, '11342798': 1}\n", + "{'point': 14, 'multiple': 12, 'i': 11, '4': 11, 'super': 11, 'long': 11, 'takes': 11, 'lines': 11, 'quotes': 4, 'said': 4, 'quote': 4, 'line': 3, 'third': 3, 'here': 3, 'parentheses': 3, 'item': 3, 'respond': 2, 'linenthis': 2, 'linehere': 2, 'reply': 2, 'elsenthis': 2, 'quoting': 2, 'return': 2, 'character': 2, '1': 2, 'single': 2, '3': 2, 'many': 2, 'hello': 2, 'use': 2, 'httpswwwexamplenet': 2, 'sure': 2, 'two': 2, 'read': 2, 'httpswwwexamplecom': 2, 'httpswwwexamplecouk': 2, 'httpswwwexampleorg': 2, 'httpswwwexampleca': 2, 'way': 1, 'definitely': 1, 'teacher': 1, 'best': 1, 'english': 1, 'according': 1, 'other': 1, 'inside': 1, 'confidently': 1, 'moments': 1, 'properly': 1, 'closed': 1, 'nest': 1, 'useful': 1, 'sometimes': 1, 'replied': 1, 'people': 1, 'there': 1, 'thiking': 1, 'im': 1, 'text': 1, 'gt': 1, 'quotei': 1, 'making': 1, 'hellogoodbye': 1, 'maybe': 1, 'gts': 1, 'hmwhat': 1, 'only': 1, 'believe': 1, 'put': 1, 'periodsor': 1, 'gtgt': 1, 'periods': 1, 'carat': 1, 'overboard': 1, 'sentence': 1, 'againi': 1, 'some': 1, 'went': 1, 'carriage': 1, 'gretzky': 1, 'googlecom': 1, 'italicized': 1, 'bolded': 1, 'italics': 1, 'bold': 1, 'uuser2test': 1, 'uuser1test': 1, 'uuser2': 1, 'uuser1': 1, 'amazoncom': 1, 'wikipediaorg': 1, 'httpexampleorg': 1, 'wayne': 1, 'linkhttpsexamplecom': 1, 'check': 1, 'nine': 1, 'eight': 1, 'seven': 1, 'six': 1, 'five': 1, 'four': 1, 'three': 1, 'test': 1, 'uneven': 1, 'terms': 1, 'emphasis': 1, '1n': 1, 'take': 1, 'shots': 1, '100': 1, 'miss': 1, 'another': 1, 'heres': 1, 'newline': 1, 'instead': 1, 'world': 1, 'valuerusing': 1, 'kind': 1, 'different': 1, 'withra': 1, 'new': 1, 'second': 1, 'first': 1, 'secondn3': 1, 'firstn2': 1, '2': 1, 'arguments': 1, '2n': 1, '11342798': 1}\n", + "{'point': 14, 'multiple': 12, 'i': 11, '4': 11, 'super': 11, 'long': 11, 'takes': 11, 'lines': 11, 'quotes': 4, 'said': 4, 'quote': 4, 'line': 3, 'third': 3, 'here': 3, 'parentheses': 3, 'item': 3, 'respond': 2, 'linenthis': 2, 'linehere': 2, 'reply': 2, 'elsenthis': 2, 'quoting': 2, 'return': 2, 'character': 2, '1': 2, 'single': 2, '3': 2, 'many': 2, 'hello': 2, 'use': 2, 'httpswwwexamplenet': 2, 'sure': 2, 'two': 2, 'read': 2, 'httpswwwexamplecom': 2, 'httpswwwexamplecouk': 2, 'httpswwwexampleorg': 2, 'httpswwwexampleca': 2, 'way': 1, 'definitely': 1, 'teacher': 1, 'best': 1, 'english': 1, 'according': 1, 'other': 1, 'inside': 1, 'confidently': 1, 'moments': 1, 'properly': 1, 'closed': 1, 'nest': 1, 'useful': 1, 'sometimes': 1, 'replied': 1, 'people': 1, 'there': 1, 'thiking': 1, 'im': 1, 'text': 1, 'gt': 1, 'quotei': 1, 'making': 1, 'hellogoodbye': 1, 'maybe': 1, 'gts': 1, 'hmwhat': 1, 'only': 1, 'believe': 1, 'put': 1, 'periodsor': 1, 'gtgt': 1, 'periods': 1, 'carat': 1, 'overboard': 1, 'sentence': 1, 'againi': 1, 'some': 1, 'went': 1, 'carriage': 1, 'gretzky': 1, 'googlecom': 1, 'italicized': 1, 'bolded': 1, 'italics': 1, 'bold': 1, 'uuser2test': 1, 'uuser1test': 1, 'uuser2': 1, 'uuser1': 1, 'amazoncom': 1, 'wikipediaorg': 1, 'httpexampleorg': 1, 'wayne': 1, 'linkhttpsexamplecom': 1, 'check': 1, 'nine': 1, 'eight': 1, 'seven': 1, 'six': 1, 'five': 1, 'four': 1, 'three': 1, 'test': 1, 'uneven': 1, 'terms': 1, 'emphasis': 1, '1n': 1, 'take': 1, 'shots': 1, '100': 1, 'miss': 1, 'another': 1, 'heres': 1, 'newline': 1, 'instead': 1, 'world': 1, 'valuerusing': 1, 'kind': 1, 'different': 1, 'withra': 1, 'new': 1, 'second': 1, 'first': 1, 'secondn3': 1, 'firstn2': 1, '2': 1, 'arguments': 1, '2n': 1, '11342798': 1}\n", + "{'point': 14, 'multiple': 12, 'i': 11, '4': 11, 'super': 11, 'long': 11, 'takes': 11, 'lines': 11, 'quotes': 4, 'said': 4, 'quote': 4, 'line': 3, 'third': 3, 'here': 3, 'parentheses': 3, 'item': 3, 'respond': 2, 'linenthis': 2, 'linehere': 2, 'reply': 2, 'elsenthis': 2, 'quoting': 2, 'return': 2, 'character': 2, '1': 2, 'single': 2, '3': 2, 'many': 2, 'hello': 2, 'use': 2, 'httpswwwexamplenet': 2, 'sure': 2, 'two': 2, 'read': 2, 'httpswwwexamplecom': 2, 'httpswwwexamplecouk': 2, 'httpswwwexampleorg': 2, 'httpswwwexampleca': 2, 'way': 1, 'definitely': 1, 'teacher': 1, 'best': 1, 'english': 1, 'according': 1, 'other': 1, 'inside': 1, 'confidently': 1, 'moments': 1, 'properly': 1, 'closed': 1, 'nest': 1, 'useful': 1, 'sometimes': 1, 'replied': 1, 'people': 1, 'there': 1, 'thiking': 1, 'im': 1, 'text': 1, 'gt': 1, 'quotei': 1, 'making': 1, 'hellogoodbye': 1, 'maybe': 1, 'gts': 1, 'hmwhat': 1, 'only': 1, 'believe': 1, 'put': 1, 'periodsor': 1, 'gtgt': 1, 'periods': 1, 'carat': 1, 'overboard': 1, 'sentence': 1, 'againi': 1, 'some': 1, 'went': 1, 'carriage': 1, 'gretzky': 1, 'googlecom': 1, 'italicized': 1, 'bolded': 1, 'italics': 1, 'bold': 1, 'uuser2test': 1, 'uuser1test': 1, 'uuser2': 1, 'uuser1': 1, 'amazoncom': 1, 'wikipediaorg': 1, 'httpexampleorg': 1, 'wayne': 1, 'linkhttpsexamplecom': 1, 'check': 1, 'nine': 1, 'eight': 1, 'seven': 1, 'six': 1, 'five': 1, 'four': 1, 'three': 1, 'test': 1, 'uneven': 1, 'terms': 1, 'emphasis': 1, '1n': 1, 'take': 1, 'shots': 1, '100': 1, 'miss': 1, 'another': 1, 'heres': 1, 'newline': 1, 'instead': 1, 'world': 1, 'valuerusing': 1, 'kind': 1, 'different': 1, 'withra': 1, 'new': 1, 'second': 1, 'first': 1, 'secondn3': 1, 'firstn2': 1, '2': 1, 'arguments': 1, '2n': 1, '11342798': 1}\n", + "{'point': 14, 'multiple': 12, 'i': 11, '4': 11, 'super': 11, 'long': 11, 'takes': 11, 'lines': 11, 'quotes': 4, 'said': 4, 'quote': 4, 'line': 3, 'third': 3, 'here': 3, 'parentheses': 3, 'item': 3, 'respond': 2, 'linenthis': 2, 'linehere': 2, 'reply': 2, 'elsenthis': 2, 'quoting': 2, 'return': 2, 'character': 2, '1': 2, 'single': 2, '3': 2, 'many': 2, 'hello': 2, 'use': 2, 'httpswwwexamplenet': 2, 'sure': 2, 'two': 2, 'read': 2, 'httpswwwexamplecom': 2, 'httpswwwexamplecouk': 2, 'httpswwwexampleorg': 2, 'httpswwwexampleca': 2, 'way': 1, 'definitely': 1, 'teacher': 1, 'best': 1, 'english': 1, 'according': 1, 'other': 1, 'inside': 1, 'confidently': 1, 'moments': 1, 'properly': 1, 'closed': 1, 'nest': 1, 'useful': 1, 'sometimes': 1, 'replied': 1, 'people': 1, 'there': 1, 'thiking': 1, 'im': 1, 'text': 1, 'gt': 1, 'quotei': 1, 'making': 1, 'hellogoodbye': 1, 'maybe': 1, 'gts': 1, 'hmwhat': 1, 'only': 1, 'believe': 1, 'put': 1, 'periodsor': 1, 'gtgt': 1, 'periods': 1, 'carat': 1, 'overboard': 1, 'sentence': 1, 'againi': 1, 'some': 1, 'went': 1, 'carriage': 1, 'gretzky': 1, 'googlecom': 1, 'italicized': 1, 'bolded': 1, 'italics': 1, 'bold': 1, 'uuser2test': 1, 'uuser1test': 1, 'uuser2': 1, 'uuser1': 1, 'amazoncom': 1, 'wikipediaorg': 1, 'httpexampleorg': 1, 'wayne': 1, 'linkhttpsexamplecom': 1, 'check': 1, 'nine': 1, 'eight': 1, 'seven': 1, 'six': 1, 'five': 1, 'four': 1, 'three': 1, 'test': 1, 'uneven': 1, 'terms': 1, 'emphasis': 1, '1n': 1, 'take': 1, 'shots': 1, '100': 1, 'miss': 1, 'another': 1, 'heres': 1, 'newline': 1, 'instead': 1, 'world': 1, 'valuerusing': 1, 'kind': 1, 'different': 1, 'withra': 1, 'new': 1, 'second': 1, 'first': 1, 'secondn3': 1, 'firstn2': 1, '2': 1, 'arguments': 1, '2n': 1, '11342798': 1}\n", + "{'point': 14, 'multiple': 12, 'i': 11, '4': 11, 'super': 11, 'long': 11, 'takes': 11, 'lines': 11, 'quotes': 4, 'said': 4, 'quote': 4, 'line': 3, 'third': 3, 'here': 3, 'parentheses': 3, 'item': 3, 'respond': 2, 'linenthis': 2, 'linehere': 2, 'reply': 2, 'elsenthis': 2, 'quoting': 2, 'return': 2, 'character': 2, '1': 2, 'single': 2, '3': 2, 'many': 2, 'hello': 2, 'use': 2, 'httpswwwexamplenet': 2, 'sure': 2, 'two': 2, 'read': 2, 'httpswwwexamplecom': 2, 'httpswwwexamplecouk': 2, 'httpswwwexampleorg': 2, 'httpswwwexampleca': 2, 'way': 1, 'definitely': 1, 'teacher': 1, 'best': 1, 'english': 1, 'according': 1, 'other': 1, 'inside': 1, 'confidently': 1, 'moments': 1, 'properly': 1, 'closed': 1, 'nest': 1, 'useful': 1, 'sometimes': 1, 'replied': 1, 'people': 1, 'there': 1, 'thiking': 1, 'im': 1, 'text': 1, 'gt': 1, 'quotei': 1, 'making': 1, 'hellogoodbye': 1, 'maybe': 1, 'gts': 1, 'hmwhat': 1, 'only': 1, 'believe': 1, 'put': 1, 'periodsor': 1, 'gtgt': 1, 'periods': 1, 'carat': 1, 'overboard': 1, 'sentence': 1, 'againi': 1, 'some': 1, 'went': 1, 'carriage': 1, 'gretzky': 1, 'googlecom': 1, 'italicized': 1, 'bolded': 1, 'italics': 1, 'bold': 1, 'uuser2test': 1, 'uuser1test': 1, 'uuser2': 1, 'uuser1': 1, 'amazoncom': 1, 'wikipediaorg': 1, 'httpexampleorg': 1, 'wayne': 1, 'linkhttpsexamplecom': 1, 'check': 1, 'nine': 1, 'eight': 1, 'seven': 1, 'six': 1, 'five': 1, 'four': 1, 'three': 1, 'test': 1, 'uneven': 1, 'terms': 1, 'emphasis': 1, '1n': 1, 'take': 1, 'shots': 1, '100': 1, 'miss': 1, 'another': 1, 'heres': 1, 'newline': 1, 'instead': 1, 'world': 1, 'valuerusing': 1, 'kind': 1, 'different': 1, 'withra': 1, 'new': 1, 'second': 1, 'first': 1, 'secondn3': 1, 'firstn2': 1, '2': 1, 'arguments': 1, '2n': 1, '11342798': 1}\n", + "{'point': 14, 'multiple': 12, 'i': 11, '4': 11, 'super': 11, 'long': 11, 'takes': 11, 'lines': 11, 'quotes': 4, 'said': 4, 'quote': 4, 'line': 3, 'third': 3, 'here': 3, 'parentheses': 3, 'item': 3, 'respond': 2, 'linenthis': 2, 'linehere': 2, 'reply': 2, 'elsenthis': 2, 'quoting': 2, 'return': 2, 'character': 2, '1': 2, 'single': 2, '3': 2, 'many': 2, 'hello': 2, 'use': 2, 'httpswwwexamplenet': 2, 'sure': 2, 'two': 2, 'read': 2, 'httpswwwexamplecom': 2, 'httpswwwexamplecouk': 2, 'httpswwwexampleorg': 2, 'httpswwwexampleca': 2, 'way': 1, 'definitely': 1, 'teacher': 1, 'best': 1, 'english': 1, 'according': 1, 'other': 1, 'inside': 1, 'confidently': 1, 'moments': 1, 'properly': 1, 'closed': 1, 'nest': 1, 'useful': 1, 'sometimes': 1, 'replied': 1, 'people': 1, 'there': 1, 'thiking': 1, 'im': 1, 'text': 1, 'gt': 1, 'quotei': 1, 'making': 1, 'hellogoodbye': 1, 'maybe': 1, 'gts': 1, 'hmwhat': 1, 'only': 1, 'believe': 1, 'put': 1, 'periodsor': 1, 'gtgt': 1, 'periods': 1, 'carat': 1, 'overboard': 1, 'sentence': 1, 'againi': 1, 'some': 1, 'went': 1, 'carriage': 1, 'gretzky': 1, 'googlecom': 1, 'italicized': 1, 'bolded': 1, 'italics': 1, 'bold': 1, 'uuser2test': 1, 'uuser1test': 1, 'uuser2': 1, 'uuser1': 1, 'amazoncom': 1, 'wikipediaorg': 1, 'httpexampleorg': 1, 'wayne': 1, 'linkhttpsexamplecom': 1, 'check': 1, 'nine': 1, 'eight': 1, 'seven': 1, 'six': 1, 'five': 1, 'four': 1, 'three': 1, 'test': 1, 'uneven': 1, 'terms': 1, 'emphasis': 1, '1n': 1, 'take': 1, 'shots': 1, '100': 1, 'miss': 1, 'another': 1, 'heres': 1, 'newline': 1, 'instead': 1, 'world': 1, 'valuerusing': 1, 'kind': 1, 'different': 1, 'withra': 1, 'new': 1, 'second': 1, 'first': 1, 'secondn3': 1, 'firstn2': 1, '2': 1, 'arguments': 1, '2n': 1, '11342798': 1}\n", + "{'point': 14, 'multiple': 12, 'i': 11, '4': 11, 'super': 11, 'long': 11, 'takes': 11, 'lines': 11, 'quotes': 4, 'said': 4, 'quote': 4, 'line': 3, 'third': 3, 'here': 3, 'parentheses': 3, 'item': 3, 'respond': 2, 'linenthis': 2, 'linehere': 2, 'reply': 2, 'elsenthis': 2, 'quoting': 2, 'return': 2, 'character': 2, '1': 2, 'single': 2, '3': 2, 'many': 2, 'hello': 2, 'use': 2, 'httpswwwexamplenet': 2, 'sure': 2, 'two': 2, 'read': 2, 'httpswwwexamplecom': 2, 'httpswwwexamplecouk': 2, 'httpswwwexampleorg': 2, 'httpswwwexampleca': 2, 'way': 1, 'definitely': 1, 'teacher': 1, 'best': 1, 'english': 1, 'according': 1, 'other': 1, 'inside': 1, 'confidently': 1, 'moments': 1, 'properly': 1, 'closed': 1, 'nest': 1, 'useful': 1, 'sometimes': 1, 'replied': 1, 'people': 1, 'there': 1, 'thiking': 1, 'im': 1, 'text': 1, 'gt': 1, 'quotei': 1, 'making': 1, 'hellogoodbye': 1, 'maybe': 1, 'gts': 1, 'hmwhat': 1, 'only': 1, 'believe': 1, 'put': 1, 'periodsor': 1, 'gtgt': 1, 'periods': 1, 'carat': 1, 'overboard': 1, 'sentence': 1, 'againi': 1, 'some': 1, 'went': 1, 'carriage': 1, 'gretzky': 1, 'googlecom': 1, 'italicized': 1, 'bolded': 1, 'italics': 1, 'bold': 1, 'uuser2test': 1, 'uuser1test': 1, 'uuser2': 1, 'uuser1': 1, 'amazoncom': 1, 'wikipediaorg': 1, 'httpexampleorg': 1, 'wayne': 1, 'linkhttpsexamplecom': 1, 'check': 1, 'nine': 1, 'eight': 1, 'seven': 1, 'six': 1, 'five': 1, 'four': 1, 'three': 1, 'test': 1, 'uneven': 1, 'terms': 1, 'emphasis': 1, '1n': 1, 'take': 1, 'shots': 1, '100': 1, 'miss': 1, 'another': 1, 'heres': 1, 'newline': 1, 'instead': 1, 'world': 1, 'valuerusing': 1, 'kind': 1, 'different': 1, 'withra': 1, 'new': 1, 'second': 1, 'first': 1, 'secondn3': 1, 'firstn2': 1, '2': 1, 'arguments': 1, '2n': 1, '11342798': 1}\n", + "{'point': 14, 'multiple': 12, 'i': 11, '4': 11, 'super': 11, 'long': 11, 'takes': 11, 'lines': 11, 'quotes': 4, 'said': 4, 'quote': 4, 'line': 3, 'third': 3, 'here': 3, 'parentheses': 3, 'item': 3, 'respond': 2, 'linenthis': 2, 'linehere': 2, 'reply': 2, 'elsenthis': 2, 'quoting': 2, 'return': 2, 'character': 2, '1': 2, 'single': 2, '3': 2, 'many': 2, 'hello': 2, 'use': 2, 'httpswwwexamplenet': 2, 'sure': 2, 'two': 2, 'read': 2, 'httpswwwexamplecom': 2, 'httpswwwexamplecouk': 2, 'httpswwwexampleorg': 2, 'httpswwwexampleca': 2, 'way': 1, 'definitely': 1, 'teacher': 1, 'best': 1, 'english': 1, 'according': 1, 'other': 1, 'inside': 1, 'confidently': 1, 'moments': 1, 'properly': 1, 'closed': 1, 'nest': 1, 'useful': 1, 'sometimes': 1, 'replied': 1, 'people': 1, 'there': 1, 'thiking': 1, 'im': 1, 'text': 1, 'gt': 1, 'quotei': 1, 'making': 1, 'hellogoodbye': 1, 'maybe': 1, 'gts': 1, 'hmwhat': 1, 'only': 1, 'believe': 1, 'put': 1, 'periodsor': 1, 'gtgt': 1, 'periods': 1, 'carat': 1, 'overboard': 1, 'sentence': 1, 'againi': 1, 'some': 1, 'went': 1, 'carriage': 1, 'gretzky': 1, 'googlecom': 1, 'italicized': 1, 'bolded': 1, 'italics': 1, 'bold': 1, 'uuser2test': 1, 'uuser1test': 1, 'uuser2': 1, 'uuser1': 1, 'amazoncom': 1, 'wikipediaorg': 1, 'httpexampleorg': 1, 'wayne': 1, 'linkhttpsexamplecom': 1, 'check': 1, 'nine': 1, 'eight': 1, 'seven': 1, 'six': 1, 'five': 1, 'four': 1, 'three': 1, 'test': 1, 'uneven': 1, 'terms': 1, 'emphasis': 1, '1n': 1, 'take': 1, 'shots': 1, '100': 1, 'miss': 1, 'another': 1, 'heres': 1, 'newline': 1, 'instead': 1, 'world': 1, 'valuerusing': 1, 'kind': 1, 'different': 1, 'withra': 1, 'new': 1, 'second': 1, 'first': 1, 'secondn3': 1, 'firstn2': 1, '2': 1, 'arguments': 1, '2n': 1, '11342798': 1}\n", + "{'point': 14, 'multiple': 12, 'i': 11, '4': 11, 'super': 11, 'long': 11, 'takes': 11, 'lines': 11, 'quotes': 4, 'said': 4, 'quote': 4, 'line': 3, 'third': 3, 'here': 3, 'parentheses': 3, 'item': 3, 'respond': 2, 'linenthis': 2, 'linehere': 2, 'reply': 2, 'elsenthis': 2, 'quoting': 2, 'return': 2, 'character': 2, '1': 2, 'single': 2, '3': 2, 'many': 2, 'hello': 2, 'use': 2, 'httpswwwexamplenet': 2, 'sure': 2, 'two': 2, 'read': 2, 'httpswwwexamplecom': 2, 'httpswwwexamplecouk': 2, 'httpswwwexampleorg': 2, 'httpswwwexampleca': 2, 'way': 1, 'definitely': 1, 'teacher': 1, 'best': 1, 'english': 1, 'according': 1, 'other': 1, 'inside': 1, 'confidently': 1, 'moments': 1, 'properly': 1, 'closed': 1, 'nest': 1, 'useful': 1, 'sometimes': 1, 'replied': 1, 'people': 1, 'there': 1, 'thiking': 1, 'im': 1, 'text': 1, 'gt': 1, 'quotei': 1, 'making': 1, 'hellogoodbye': 1, 'maybe': 1, 'gts': 1, 'hmwhat': 1, 'only': 1, 'believe': 1, 'put': 1, 'periodsor': 1, 'gtgt': 1, 'periods': 1, 'carat': 1, 'overboard': 1, 'sentence': 1, 'againi': 1, 'some': 1, 'went': 1, 'carriage': 1, 'gretzky': 1, 'googlecom': 1, 'italicized': 1, 'bolded': 1, 'italics': 1, 'bold': 1, 'uuser2test': 1, 'uuser1test': 1, 'uuser2': 1, 'uuser1': 1, 'amazoncom': 1, 'wikipediaorg': 1, 'httpexampleorg': 1, 'wayne': 1, 'linkhttpsexamplecom': 1, 'check': 1, 'nine': 1, 'eight': 1, 'seven': 1, 'six': 1, 'five': 1, 'four': 1, 'three': 1, 'test': 1, 'uneven': 1, 'terms': 1, 'emphasis': 1, '1n': 1, 'take': 1, 'shots': 1, '100': 1, 'miss': 1, 'another': 1, 'heres': 1, 'newline': 1, 'instead': 1, 'world': 1, 'valuerusing': 1, 'kind': 1, 'different': 1, 'withra': 1, 'new': 1, 'second': 1, 'first': 1, 'secondn3': 1, 'firstn2': 1, '2': 1, 'arguments': 1, '2n': 1, '11342798': 1}\n", + "{'point': 14, 'multiple': 12, 'i': 11, '4': 11, 'super': 11, 'long': 11, 'takes': 11, 'lines': 11, 'quotes': 4, 'said': 4, 'quote': 4, 'line': 3, 'third': 3, 'here': 3, 'parentheses': 3, 'item': 3, 'respond': 2, 'linenthis': 2, 'linehere': 2, 'reply': 2, 'elsenthis': 2, 'quoting': 2, 'return': 2, 'character': 2, '1': 2, 'single': 2, '3': 2, 'many': 2, 'hello': 2, 'use': 2, 'httpswwwexamplenet': 2, 'sure': 2, 'two': 2, 'read': 2, 'httpswwwexamplecom': 2, 'httpswwwexamplecouk': 2, 'httpswwwexampleorg': 2, 'httpswwwexampleca': 2, 'way': 1, 'definitely': 1, 'teacher': 1, 'best': 1, 'english': 1, 'according': 1, 'other': 1, 'inside': 1, 'confidently': 1, 'moments': 1, 'properly': 1, 'closed': 1, 'nest': 1, 'useful': 1, 'sometimes': 1, 'replied': 1, 'people': 1, 'there': 1, 'thiking': 1, 'im': 1, 'text': 1, 'gt': 1, 'quotei': 1, 'making': 1, 'hellogoodbye': 1, 'maybe': 1, 'gts': 1, 'hmwhat': 1, 'only': 1, 'believe': 1, 'put': 1, 'periodsor': 1, 'gtgt': 1, 'periods': 1, 'carat': 1, 'overboard': 1, 'sentence': 1, 'againi': 1, 'some': 1, 'went': 1, 'carriage': 1, 'gretzky': 1, 'googlecom': 1, 'italicized': 1, 'bolded': 1, 'italics': 1, 'bold': 1, 'uuser2test': 1, 'uuser1test': 1, 'uuser2': 1, 'uuser1': 1, 'amazoncom': 1, 'wikipediaorg': 1, 'httpexampleorg': 1, 'wayne': 1, 'linkhttpsexamplecom': 1, 'check': 1, 'nine': 1, 'eight': 1, 'seven': 1, 'six': 1, 'five': 1, 'four': 1, 'three': 1, 'test': 1, 'uneven': 1, 'terms': 1, 'emphasis': 1, '1n': 1, 'take': 1, 'shots': 1, '100': 1, 'miss': 1, 'another': 1, 'heres': 1, 'newline': 1, 'instead': 1, 'world': 1, 'valuerusing': 1, 'kind': 1, 'different': 1, 'withra': 1, 'new': 1, 'second': 1, 'first': 1, 'secondn3': 1, 'firstn2': 1, '2': 1, 'arguments': 1, '2n': 1, '11342798': 1}\n", + "{'point': 14, 'multiple': 12, 'i': 11, '4': 11, 'super': 11, 'long': 11, 'takes': 11, 'lines': 11, 'quotes': 4, 'said': 4, 'quote': 4, 'line': 3, 'third': 3, 'here': 3, 'parentheses': 3, 'item': 3, 'respond': 2, 'linenthis': 2, 'linehere': 2, 'reply': 2, 'elsenthis': 2, 'quoting': 2, 'return': 2, 'character': 2, '1': 2, 'single': 2, '3': 2, 'many': 2, 'hello': 2, 'use': 2, 'httpswwwexamplenet': 2, 'sure': 2, 'two': 2, 'read': 2, 'httpswwwexamplecom': 2, 'httpswwwexamplecouk': 2, 'httpswwwexampleorg': 2, 'httpswwwexampleca': 2, 'way': 1, 'definitely': 1, 'teacher': 1, 'best': 1, 'english': 1, 'according': 1, 'other': 1, 'inside': 1, 'confidently': 1, 'moments': 1, 'properly': 1, 'closed': 1, 'nest': 1, 'useful': 1, 'sometimes': 1, 'replied': 1, 'people': 1, 'there': 1, 'thiking': 1, 'im': 1, 'text': 1, 'gt': 1, 'quotei': 1, 'making': 1, 'hellogoodbye': 1, 'maybe': 1, 'gts': 1, 'hmwhat': 1, 'only': 1, 'believe': 1, 'put': 1, 'periodsor': 1, 'gtgt': 1, 'periods': 1, 'carat': 1, 'overboard': 1, 'sentence': 1, 'againi': 1, 'some': 1, 'went': 1, 'carriage': 1, 'gretzky': 1, 'googlecom': 1, 'italicized': 1, 'bolded': 1, 'italics': 1, 'bold': 1, 'uuser2test': 1, 'uuser1test': 1, 'uuser2': 1, 'uuser1': 1, 'amazoncom': 1, 'wikipediaorg': 1, 'httpexampleorg': 1, 'wayne': 1, 'linkhttpsexamplecom': 1, 'check': 1, 'nine': 1, 'eight': 1, 'seven': 1, 'six': 1, 'five': 1, 'four': 1, 'three': 1, 'test': 1, 'uneven': 1, 'terms': 1, 'emphasis': 1, '1n': 1, 'take': 1, 'shots': 1, '100': 1, 'miss': 1, 'another': 1, 'heres': 1, 'newline': 1, 'instead': 1, 'world': 1, 'valuerusing': 1, 'kind': 1, 'different': 1, 'withra': 1, 'new': 1, 'second': 1, 'first': 1, 'secondn3': 1, 'firstn2': 1, '2': 1, 'arguments': 1, '2n': 1, '11342798': 1}\n", + "{'point': 14, 'multiple': 12, 'i': 11, '4': 11, 'super': 11, 'long': 11, 'takes': 11, 'lines': 11, 'quotes': 4, 'said': 4, 'quote': 4, 'line': 3, 'third': 3, 'here': 3, 'parentheses': 3, 'item': 3, 'respond': 2, 'linenthis': 2, 'linehere': 2, 'reply': 2, 'elsenthis': 2, 'quoting': 2, 'return': 2, 'character': 2, '1': 2, 'single': 2, '3': 2, 'many': 2, 'hello': 2, 'use': 2, 'httpswwwexamplenet': 2, 'sure': 2, 'two': 2, 'read': 2, 'httpswwwexamplecom': 2, 'httpswwwexamplecouk': 2, 'httpswwwexampleorg': 2, 'httpswwwexampleca': 2, 'way': 1, 'definitely': 1, 'teacher': 1, 'best': 1, 'english': 1, 'according': 1, 'other': 1, 'inside': 1, 'confidently': 1, 'moments': 1, 'properly': 1, 'closed': 1, 'nest': 1, 'useful': 1, 'sometimes': 1, 'replied': 1, 'people': 1, 'there': 1, 'thiking': 1, 'im': 1, 'text': 1, 'gt': 1, 'quotei': 1, 'making': 1, 'hellogoodbye': 1, 'maybe': 1, 'gts': 1, 'hmwhat': 1, 'only': 1, 'believe': 1, 'put': 1, 'periodsor': 1, 'gtgt': 1, 'periods': 1, 'carat': 1, 'overboard': 1, 'sentence': 1, 'againi': 1, 'some': 1, 'went': 1, 'carriage': 1, 'gretzky': 1, 'googlecom': 1, 'italicized': 1, 'bolded': 1, 'italics': 1, 'bold': 1, 'uuser2test': 1, 'uuser1test': 1, 'uuser2': 1, 'uuser1': 1, 'amazoncom': 1, 'wikipediaorg': 1, 'httpexampleorg': 1, 'wayne': 1, 'linkhttpsexamplecom': 1, 'check': 1, 'nine': 1, 'eight': 1, 'seven': 1, 'six': 1, 'five': 1, 'four': 1, 'three': 1, 'test': 1, 'uneven': 1, 'terms': 1, 'emphasis': 1, '1n': 1, 'take': 1, 'shots': 1, '100': 1, 'miss': 1, 'another': 1, 'heres': 1, 'newline': 1, 'instead': 1, 'world': 1, 'valuerusing': 1, 'kind': 1, 'different': 1, 'withra': 1, 'new': 1, 'second': 1, 'first': 1, 'secondn3': 1, 'firstn2': 1, '2': 1, 'arguments': 1, '2n': 1, '11342798': 1}\n", + "{'point': 14, 'multiple': 12, 'i': 11, '4': 11, 'super': 11, 'long': 11, 'takes': 11, 'lines': 11, 'quotes': 4, 'said': 4, 'quote': 4, 'line': 3, 'third': 3, 'here': 3, 'parentheses': 3, 'item': 3, 'respond': 2, 'linenthis': 2, 'linehere': 2, 'reply': 2, 'elsenthis': 2, 'quoting': 2, 'return': 2, 'character': 2, '1': 2, 'single': 2, '3': 2, 'many': 2, 'hello': 2, 'use': 2, 'httpswwwexamplenet': 2, 'sure': 2, 'two': 2, 'read': 2, 'httpswwwexamplecom': 2, 'httpswwwexamplecouk': 2, 'httpswwwexampleorg': 2, 'httpswwwexampleca': 2, 'way': 1, 'definitely': 1, 'teacher': 1, 'best': 1, 'english': 1, 'according': 1, 'other': 1, 'inside': 1, 'confidently': 1, 'moments': 1, 'properly': 1, 'closed': 1, 'nest': 1, 'useful': 1, 'sometimes': 1, 'replied': 1, 'people': 1, 'there': 1, 'thiking': 1, 'im': 1, 'text': 1, 'gt': 1, 'quotei': 1, 'making': 1, 'hellogoodbye': 1, 'maybe': 1, 'gts': 1, 'hmwhat': 1, 'only': 1, 'believe': 1, 'put': 1, 'periodsor': 1, 'gtgt': 1, 'periods': 1, 'carat': 1, 'overboard': 1, 'sentence': 1, 'againi': 1, 'some': 1, 'went': 1, 'carriage': 1, 'gretzky': 1, 'googlecom': 1, 'italicized': 1, 'bolded': 1, 'italics': 1, 'bold': 1, 'uuser2test': 1, 'uuser1test': 1, 'uuser2': 1, 'uuser1': 1, 'amazoncom': 1, 'wikipediaorg': 1, 'httpexampleorg': 1, 'wayne': 1, 'linkhttpsexamplecom': 1, 'check': 1, 'nine': 1, 'eight': 1, 'seven': 1, 'six': 1, 'five': 1, 'four': 1, 'three': 1, 'test': 1, 'uneven': 1, 'terms': 1, 'emphasis': 1, '1n': 1, 'take': 1, 'shots': 1, '100': 1, 'miss': 1, 'another': 1, 'heres': 1, 'newline': 1, 'instead': 1, 'world': 1, 'valuerusing': 1, 'kind': 1, 'different': 1, 'withra': 1, 'new': 1, 'second': 1, 'first': 1, 'secondn3': 1, 'firstn2': 1, '2': 1, 'arguments': 1, '2n': 1, '11342798': 1}\n", + "{'point': 14, 'multiple': 12, 'i': 11, '4': 11, 'super': 11, 'long': 11, 'takes': 11, 'lines': 11, 'quotes': 4, 'said': 4, 'quote': 4, 'line': 3, 'third': 3, 'here': 3, 'parentheses': 3, 'item': 3, 'respond': 2, 'linenthis': 2, 'linehere': 2, 'reply': 2, 'elsenthis': 2, 'quoting': 2, 'return': 2, 'character': 2, '1': 2, 'single': 2, '3': 2, 'many': 2, 'hello': 2, 'use': 2, 'httpswwwexamplenet': 2, 'sure': 2, 'two': 2, 'read': 2, 'httpswwwexamplecom': 2, 'httpswwwexamplecouk': 2, 'httpswwwexampleorg': 2, 'httpswwwexampleca': 2, 'way': 1, 'definitely': 1, 'teacher': 1, 'best': 1, 'english': 1, 'according': 1, 'other': 1, 'inside': 1, 'confidently': 1, 'moments': 1, 'properly': 1, 'closed': 1, 'nest': 1, 'useful': 1, 'sometimes': 1, 'replied': 1, 'people': 1, 'there': 1, 'thiking': 1, 'im': 1, 'text': 1, 'gt': 1, 'quotei': 1, 'making': 1, 'hellogoodbye': 1, 'maybe': 1, 'gts': 1, 'hmwhat': 1, 'only': 1, 'believe': 1, 'put': 1, 'periodsor': 1, 'gtgt': 1, 'periods': 1, 'carat': 1, 'overboard': 1, 'sentence': 1, 'againi': 1, 'some': 1, 'went': 1, 'carriage': 1, 'gretzky': 1, 'googlecom': 1, 'italicized': 1, 'bolded': 1, 'italics': 1, 'bold': 1, 'uuser2test': 1, 'uuser1test': 1, 'uuser2': 1, 'uuser1': 1, 'amazoncom': 1, 'wikipediaorg': 1, 'httpexampleorg': 1, 'wayne': 1, 'linkhttpsexamplecom': 1, 'check': 1, 'nine': 1, 'eight': 1, 'seven': 1, 'six': 1, 'five': 1, 'four': 1, 'three': 1, 'test': 1, 'uneven': 1, 'terms': 1, 'emphasis': 1, '1n': 1, 'take': 1, 'shots': 1, '100': 1, 'miss': 1, 'another': 1, 'heres': 1, 'newline': 1, 'instead': 1, 'world': 1, 'valuerusing': 1, 'kind': 1, 'different': 1, 'withra': 1, 'new': 1, 'second': 1, 'first': 1, 'secondn3': 1, 'firstn2': 1, '2': 1, 'arguments': 1, '2n': 1, '11342798': 1}\n", + "{'i': 29, 'think': 15, 'learn': 7, 'how': 5, 'language': 5, 'mother': 5, 'learning': 4, 'understand': 4, 'also': 4, 'english': 4, 'law': 4, 'guy': 4, 'has': 3, 'use': 3, 'resources': 3, 'asshole': 3, 'help': 3, 'languages': 2, 'sure': 2, 'want': 2, 'asking': 2, 'capacity': 2, 'family': 2, 'same': 2, 'feel': 2, 'issue': 2, 'certain': 2, 'makes': 2, 'some': 2, 'tried': 2, 'maybe': 2, 'research': 1, 'people': 1, 'time': 1, 'take': 1, 'easy': 1, 'wired': 1, 'other': 1, 'talk': 1, 'differently': 1, 'easier': 1, 'country': 1, 'foreign': 1, 'gave': 1, 'live': 1, 'go': 1, 'reasonable': 1, 'request': 1, 'culturedcow': 1, 'utilize': 1, 'lives': 1, 'such': 1, 'older': 1, 'wrong': 1, 'loves': 1, 'sound': 1, 'made': 1, 'done': 1, 'america': 1, 'edit': 1, 'try': 1, 'least': 1, 'problem': 1, 'patience': 1, 'brain': 1, 'second': 1, 'easiest': 1, 'does': 1, 'child': 1, 'quickly': 1, 'agree': 1, 'new': 1, 'needs': 1, 'more': 1, 'apps': 1, 'reason': 1, 'wife': 1, 'now': 1, 'according': 1, 'ass': 1, 'thinks': 1, 'thoughts': 1, 'ahole': 1, 'mind': 1, 'changing': 1, 'open': 1, 'guilty': 1, 'believe': 1, 'handle': 1, 'approximately': 1, 'seen': 1, 'ever': 1, 'movie': 1, 'best': 1, 'doubt': 1, 'response': 1, 'fairly': 1, 'correct': 1, 'answer': 1, 'know': 1, 'confused': 1, 'little': 1, 'person': 1, 'polite': 1, 'pick': 1, 'approaching': 1, 'years': 1, '8': 1, 'here': 1, 'mil': 1, 'first': 1, 'approach': 1, 'strategies': 1, 'discussed': 1, 'however': 1, 'frustration': 1, 'conflicted': 1, 'independent': 1, 'doesnt': 1, 'sense': 1, 'feeling': 1, 'yes': 1, 'interpreter': 1, 'work': 1, 'feelings': 1, 'guys': 1, 'disrespected': 1, 'upset': 1, 'see': 1, 'apparently': 1}\n", + "{'i': 29, 'think': 15, 'learn': 7, 'how': 5, 'language': 5, 'mother': 5, 'learning': 4, 'understand': 4, 'also': 4, 'english': 4, 'law': 4, 'guy': 4, 'has': 3, 'use': 3, 'resources': 3, 'asshole': 3, 'help': 3, 'languages': 2, 'sure': 2, 'want': 2, 'asking': 2, 'capacity': 2, 'family': 2, 'same': 2, 'feel': 2, 'issue': 2, 'certain': 2, 'makes': 2, 'some': 2, 'tried': 2, 'maybe': 2, 'research': 1, 'people': 1, 'time': 1, 'take': 1, 'easy': 1, 'wired': 1, 'other': 1, 'talk': 1, 'differently': 1, 'easier': 1, 'country': 1, 'foreign': 1, 'gave': 1, 'live': 1, 'go': 1, 'reasonable': 1, 'request': 1, 'culturedcow': 1, 'utilize': 1, 'lives': 1, 'such': 1, 'older': 1, 'wrong': 1, 'loves': 1, 'sound': 1, 'made': 1, 'done': 1, 'america': 1, 'edit': 1, 'try': 1, 'least': 1, 'problem': 1, 'patience': 1, 'brain': 1, 'second': 1, 'easiest': 1, 'does': 1, 'child': 1, 'quickly': 1, 'agree': 1, 'new': 1, 'needs': 1, 'more': 1, 'apps': 1, 'reason': 1, 'wife': 1, 'now': 1, 'according': 1, 'ass': 1, 'thinks': 1, 'thoughts': 1, 'ahole': 1, 'mind': 1, 'changing': 1, 'open': 1, 'guilty': 1, 'believe': 1, 'handle': 1, 'approximately': 1, 'seen': 1, 'ever': 1, 'movie': 1, 'best': 1, 'doubt': 1, 'response': 1, 'fairly': 1, 'correct': 1, 'answer': 1, 'know': 1, 'confused': 1, 'little': 1, 'person': 1, 'polite': 1, 'pick': 1, 'approaching': 1, 'years': 1, '8': 1, 'here': 1, 'mil': 1, 'first': 1, 'approach': 1, 'strategies': 1, 'discussed': 1, 'however': 1, 'frustration': 1, 'conflicted': 1, 'independent': 1, 'doesnt': 1, 'sense': 1, 'feeling': 1, 'yes': 1, 'interpreter': 1, 'work': 1, 'feelings': 1, 'guys': 1, 'disrespected': 1, 'upset': 1, 'see': 1, 'apparently': 1}\n", + "{'i': 29, 'think': 15, 'learn': 7, 'how': 5, 'language': 5, 'mother': 5, 'learning': 4, 'understand': 4, 'also': 4, 'english': 4, 'law': 4, 'guy': 4, 'has': 3, 'use': 3, 'resources': 3, 'asshole': 3, 'help': 3, 'languages': 2, 'sure': 2, 'want': 2, 'asking': 2, 'capacity': 2, 'family': 2, 'same': 2, 'feel': 2, 'issue': 2, 'certain': 2, 'makes': 2, 'some': 2, 'tried': 2, 'maybe': 2, 'research': 1, 'people': 1, 'time': 1, 'take': 1, 'easy': 1, 'wired': 1, 'other': 1, 'talk': 1, 'differently': 1, 'easier': 1, 'country': 1, 'foreign': 1, 'gave': 1, 'live': 1, 'go': 1, 'reasonable': 1, 'request': 1, 'culturedcow': 1, 'utilize': 1, 'lives': 1, 'such': 1, 'older': 1, 'wrong': 1, 'loves': 1, 'sound': 1, 'made': 1, 'done': 1, 'america': 1, 'edit': 1, 'try': 1, 'least': 1, 'problem': 1, 'patience': 1, 'brain': 1, 'second': 1, 'easiest': 1, 'does': 1, 'child': 1, 'quickly': 1, 'agree': 1, 'new': 1, 'needs': 1, 'more': 1, 'apps': 1, 'reason': 1, 'wife': 1, 'now': 1, 'according': 1, 'ass': 1, 'thinks': 1, 'thoughts': 1, 'ahole': 1, 'mind': 1, 'changing': 1, 'open': 1, 'guilty': 1, 'believe': 1, 'handle': 1, 'approximately': 1, 'seen': 1, 'ever': 1, 'movie': 1, 'best': 1, 'doubt': 1, 'response': 1, 'fairly': 1, 'correct': 1, 'answer': 1, 'know': 1, 'confused': 1, 'little': 1, 'person': 1, 'polite': 1, 'pick': 1, 'approaching': 1, 'years': 1, '8': 1, 'here': 1, 'mil': 1, 'first': 1, 'approach': 1, 'strategies': 1, 'discussed': 1, 'however': 1, 'frustration': 1, 'conflicted': 1, 'independent': 1, 'doesnt': 1, 'sense': 1, 'feeling': 1, 'yes': 1, 'interpreter': 1, 'work': 1, 'feelings': 1, 'guys': 1, 'disrespected': 1, 'upset': 1, 'see': 1, 'apparently': 1}\n", + "{'i': 29, 'think': 15, 'learn': 7, 'how': 5, 'language': 5, 'mother': 5, 'learning': 4, 'understand': 4, 'also': 4, 'english': 4, 'law': 4, 'guy': 4, 'has': 3, 'use': 3, 'resources': 3, 'asshole': 3, 'help': 3, 'languages': 2, 'sure': 2, 'want': 2, 'asking': 2, 'capacity': 2, 'family': 2, 'same': 2, 'feel': 2, 'issue': 2, 'certain': 2, 'makes': 2, 'some': 2, 'tried': 2, 'maybe': 2, 'research': 1, 'people': 1, 'time': 1, 'take': 1, 'easy': 1, 'wired': 1, 'other': 1, 'talk': 1, 'differently': 1, 'easier': 1, 'country': 1, 'foreign': 1, 'gave': 1, 'live': 1, 'go': 1, 'reasonable': 1, 'request': 1, 'culturedcow': 1, 'utilize': 1, 'lives': 1, 'such': 1, 'older': 1, 'wrong': 1, 'loves': 1, 'sound': 1, 'made': 1, 'done': 1, 'america': 1, 'edit': 1, 'try': 1, 'least': 1, 'problem': 1, 'patience': 1, 'brain': 1, 'second': 1, 'easiest': 1, 'does': 1, 'child': 1, 'quickly': 1, 'agree': 1, 'new': 1, 'needs': 1, 'more': 1, 'apps': 1, 'reason': 1, 'wife': 1, 'now': 1, 'according': 1, 'ass': 1, 'thinks': 1, 'thoughts': 1, 'ahole': 1, 'mind': 1, 'changing': 1, 'open': 1, 'guilty': 1, 'believe': 1, 'handle': 1, 'approximately': 1, 'seen': 1, 'ever': 1, 'movie': 1, 'best': 1, 'doubt': 1, 'response': 1, 'fairly': 1, 'correct': 1, 'answer': 1, 'know': 1, 'confused': 1, 'little': 1, 'person': 1, 'polite': 1, 'pick': 1, 'approaching': 1, 'years': 1, '8': 1, 'here': 1, 'mil': 1, 'first': 1, 'approach': 1, 'strategies': 1, 'discussed': 1, 'however': 1, 'frustration': 1, 'conflicted': 1, 'independent': 1, 'doesnt': 1, 'sense': 1, 'feeling': 1, 'yes': 1, 'interpreter': 1, 'work': 1, 'feelings': 1, 'guys': 1, 'disrespected': 1, 'upset': 1, 'see': 1, 'apparently': 1}\n", + "{'i': 29, 'think': 15, 'learn': 7, 'how': 5, 'language': 5, 'mother': 5, 'learning': 4, 'understand': 4, 'also': 4, 'english': 4, 'law': 4, 'guy': 4, 'has': 3, 'use': 3, 'resources': 3, 'asshole': 3, 'help': 3, 'languages': 2, 'sure': 2, 'want': 2, 'asking': 2, 'capacity': 2, 'family': 2, 'same': 2, 'feel': 2, 'issue': 2, 'certain': 2, 'makes': 2, 'some': 2, 'tried': 2, 'maybe': 2, 'research': 1, 'people': 1, 'time': 1, 'take': 1, 'easy': 1, 'wired': 1, 'other': 1, 'talk': 1, 'differently': 1, 'easier': 1, 'country': 1, 'foreign': 1, 'gave': 1, 'live': 1, 'go': 1, 'reasonable': 1, 'request': 1, 'culturedcow': 1, 'utilize': 1, 'lives': 1, 'such': 1, 'older': 1, 'wrong': 1, 'loves': 1, 'sound': 1, 'made': 1, 'done': 1, 'america': 1, 'edit': 1, 'try': 1, 'least': 1, 'problem': 1, 'patience': 1, 'brain': 1, 'second': 1, 'easiest': 1, 'does': 1, 'child': 1, 'quickly': 1, 'agree': 1, 'new': 1, 'needs': 1, 'more': 1, 'apps': 1, 'reason': 1, 'wife': 1, 'now': 1, 'according': 1, 'ass': 1, 'thinks': 1, 'thoughts': 1, 'ahole': 1, 'mind': 1, 'changing': 1, 'open': 1, 'guilty': 1, 'believe': 1, 'handle': 1, 'approximately': 1, 'seen': 1, 'ever': 1, 'movie': 1, 'best': 1, 'doubt': 1, 'response': 1, 'fairly': 1, 'correct': 1, 'answer': 1, 'know': 1, 'confused': 1, 'little': 1, 'person': 1, 'polite': 1, 'pick': 1, 'approaching': 1, 'years': 1, '8': 1, 'here': 1, 'mil': 1, 'first': 1, 'approach': 1, 'strategies': 1, 'discussed': 1, 'however': 1, 'frustration': 1, 'conflicted': 1, 'independent': 1, 'doesnt': 1, 'sense': 1, 'feeling': 1, 'yes': 1, 'interpreter': 1, 'work': 1, 'feelings': 1, 'guys': 1, 'disrespected': 1, 'upset': 1, 'see': 1, 'apparently': 1}\n", + "{'i': 29, 'think': 15, 'learn': 7, 'how': 5, 'language': 5, 'mother': 5, 'learning': 4, 'understand': 4, 'also': 4, 'english': 4, 'law': 4, 'guy': 4, 'has': 3, 'use': 3, 'resources': 3, 'asshole': 3, 'help': 3, 'languages': 2, 'sure': 2, 'want': 2, 'asking': 2, 'capacity': 2, 'family': 2, 'same': 2, 'feel': 2, 'issue': 2, 'certain': 2, 'makes': 2, 'some': 2, 'tried': 2, 'maybe': 2, 'research': 1, 'people': 1, 'time': 1, 'take': 1, 'easy': 1, 'wired': 1, 'other': 1, 'talk': 1, 'differently': 1, 'easier': 1, 'country': 1, 'foreign': 1, 'gave': 1, 'live': 1, 'go': 1, 'reasonable': 1, 'request': 1, 'culturedcow': 1, 'utilize': 1, 'lives': 1, 'such': 1, 'older': 1, 'wrong': 1, 'loves': 1, 'sound': 1, 'made': 1, 'done': 1, 'america': 1, 'edit': 1, 'try': 1, 'least': 1, 'problem': 1, 'patience': 1, 'brain': 1, 'second': 1, 'easiest': 1, 'does': 1, 'child': 1, 'quickly': 1, 'agree': 1, 'new': 1, 'needs': 1, 'more': 1, 'apps': 1, 'reason': 1, 'wife': 1, 'now': 1, 'according': 1, 'ass': 1, 'thinks': 1, 'thoughts': 1, 'ahole': 1, 'mind': 1, 'changing': 1, 'open': 1, 'guilty': 1, 'believe': 1, 'handle': 1, 'approximately': 1, 'seen': 1, 'ever': 1, 'movie': 1, 'best': 1, 'doubt': 1, 'response': 1, 'fairly': 1, 'correct': 1, 'answer': 1, 'know': 1, 'confused': 1, 'little': 1, 'person': 1, 'polite': 1, 'pick': 1, 'approaching': 1, 'years': 1, '8': 1, 'here': 1, 'mil': 1, 'first': 1, 'approach': 1, 'strategies': 1, 'discussed': 1, 'however': 1, 'frustration': 1, 'conflicted': 1, 'independent': 1, 'doesnt': 1, 'sense': 1, 'feeling': 1, 'yes': 1, 'interpreter': 1, 'work': 1, 'feelings': 1, 'guys': 1, 'disrespected': 1, 'upset': 1, 'see': 1, 'apparently': 1}\n", + "{'i': 29, 'think': 15, 'learn': 7, 'how': 5, 'language': 5, 'mother': 5, 'learning': 4, 'understand': 4, 'also': 4, 'english': 4, 'law': 4, 'guy': 4, 'has': 3, 'use': 3, 'resources': 3, 'asshole': 3, 'help': 3, 'languages': 2, 'sure': 2, 'want': 2, 'asking': 2, 'capacity': 2, 'family': 2, 'same': 2, 'feel': 2, 'issue': 2, 'certain': 2, 'makes': 2, 'some': 2, 'tried': 2, 'maybe': 2, 'research': 1, 'people': 1, 'time': 1, 'take': 1, 'easy': 1, 'wired': 1, 'other': 1, 'talk': 1, 'differently': 1, 'easier': 1, 'country': 1, 'foreign': 1, 'gave': 1, 'live': 1, 'go': 1, 'reasonable': 1, 'request': 1, 'culturedcow': 1, 'utilize': 1, 'lives': 1, 'such': 1, 'older': 1, 'wrong': 1, 'loves': 1, 'sound': 1, 'made': 1, 'done': 1, 'america': 1, 'edit': 1, 'try': 1, 'least': 1, 'problem': 1, 'patience': 1, 'brain': 1, 'second': 1, 'easiest': 1, 'does': 1, 'child': 1, 'quickly': 1, 'agree': 1, 'new': 1, 'needs': 1, 'more': 1, 'apps': 1, 'reason': 1, 'wife': 1, 'now': 1, 'according': 1, 'ass': 1, 'thinks': 1, 'thoughts': 1, 'ahole': 1, 'mind': 1, 'changing': 1, 'open': 1, 'guilty': 1, 'believe': 1, 'handle': 1, 'approximately': 1, 'seen': 1, 'ever': 1, 'movie': 1, 'best': 1, 'doubt': 1, 'response': 1, 'fairly': 1, 'correct': 1, 'answer': 1, 'know': 1, 'confused': 1, 'little': 1, 'person': 1, 'polite': 1, 'pick': 1, 'approaching': 1, 'years': 1, '8': 1, 'here': 1, 'mil': 1, 'first': 1, 'approach': 1, 'strategies': 1, 'discussed': 1, 'however': 1, 'frustration': 1, 'conflicted': 1, 'independent': 1, 'doesnt': 1, 'sense': 1, 'feeling': 1, 'yes': 1, 'interpreter': 1, 'work': 1, 'feelings': 1, 'guys': 1, 'disrespected': 1, 'upset': 1, 'see': 1, 'apparently': 1}\n", + "{'i': 29, 'think': 15, 'learn': 7, 'how': 5, 'language': 5, 'mother': 5, 'learning': 4, 'understand': 4, 'also': 4, 'english': 4, 'law': 4, 'guy': 4, 'has': 3, 'use': 3, 'resources': 3, 'asshole': 3, 'help': 3, 'languages': 2, 'sure': 2, 'want': 2, 'asking': 2, 'capacity': 2, 'family': 2, 'same': 2, 'feel': 2, 'issue': 2, 'certain': 2, 'makes': 2, 'some': 2, 'tried': 2, 'maybe': 2, 'research': 1, 'people': 1, 'time': 1, 'take': 1, 'easy': 1, 'wired': 1, 'other': 1, 'talk': 1, 'differently': 1, 'easier': 1, 'country': 1, 'foreign': 1, 'gave': 1, 'live': 1, 'go': 1, 'reasonable': 1, 'request': 1, 'culturedcow': 1, 'utilize': 1, 'lives': 1, 'such': 1, 'older': 1, 'wrong': 1, 'loves': 1, 'sound': 1, 'made': 1, 'done': 1, 'america': 1, 'edit': 1, 'try': 1, 'least': 1, 'problem': 1, 'patience': 1, 'brain': 1, 'second': 1, 'easiest': 1, 'does': 1, 'child': 1, 'quickly': 1, 'agree': 1, 'new': 1, 'needs': 1, 'more': 1, 'apps': 1, 'reason': 1, 'wife': 1, 'now': 1, 'according': 1, 'ass': 1, 'thinks': 1, 'thoughts': 1, 'ahole': 1, 'mind': 1, 'changing': 1, 'open': 1, 'guilty': 1, 'believe': 1, 'handle': 1, 'approximately': 1, 'seen': 1, 'ever': 1, 'movie': 1, 'best': 1, 'doubt': 1, 'response': 1, 'fairly': 1, 'correct': 1, 'answer': 1, 'know': 1, 'confused': 1, 'little': 1, 'person': 1, 'polite': 1, 'pick': 1, 'approaching': 1, 'years': 1, '8': 1, 'here': 1, 'mil': 1, 'first': 1, 'approach': 1, 'strategies': 1, 'discussed': 1, 'however': 1, 'frustration': 1, 'conflicted': 1, 'independent': 1, 'doesnt': 1, 'sense': 1, 'feeling': 1, 'yes': 1, 'interpreter': 1, 'work': 1, 'feelings': 1, 'guys': 1, 'disrespected': 1, 'upset': 1, 'see': 1, 'apparently': 1}\n", + "{'i': 29, 'think': 15, 'learn': 7, 'how': 5, 'language': 5, 'mother': 5, 'learning': 4, 'understand': 4, 'also': 4, 'english': 4, 'law': 4, 'guy': 4, 'has': 3, 'use': 3, 'resources': 3, 'asshole': 3, 'help': 3, 'languages': 2, 'sure': 2, 'want': 2, 'asking': 2, 'capacity': 2, 'family': 2, 'same': 2, 'feel': 2, 'issue': 2, 'certain': 2, 'makes': 2, 'some': 2, 'tried': 2, 'maybe': 2, 'research': 1, 'people': 1, 'time': 1, 'take': 1, 'easy': 1, 'wired': 1, 'other': 1, 'talk': 1, 'differently': 1, 'easier': 1, 'country': 1, 'foreign': 1, 'gave': 1, 'live': 1, 'go': 1, 'reasonable': 1, 'request': 1, 'culturedcow': 1, 'utilize': 1, 'lives': 1, 'such': 1, 'older': 1, 'wrong': 1, 'loves': 1, 'sound': 1, 'made': 1, 'done': 1, 'america': 1, 'edit': 1, 'try': 1, 'least': 1, 'problem': 1, 'patience': 1, 'brain': 1, 'second': 1, 'easiest': 1, 'does': 1, 'child': 1, 'quickly': 1, 'agree': 1, 'new': 1, 'needs': 1, 'more': 1, 'apps': 1, 'reason': 1, 'wife': 1, 'now': 1, 'according': 1, 'ass': 1, 'thinks': 1, 'thoughts': 1, 'ahole': 1, 'mind': 1, 'changing': 1, 'open': 1, 'guilty': 1, 'believe': 1, 'handle': 1, 'approximately': 1, 'seen': 1, 'ever': 1, 'movie': 1, 'best': 1, 'doubt': 1, 'response': 1, 'fairly': 1, 'correct': 1, 'answer': 1, 'know': 1, 'confused': 1, 'little': 1, 'person': 1, 'polite': 1, 'pick': 1, 'approaching': 1, 'years': 1, '8': 1, 'here': 1, 'mil': 1, 'first': 1, 'approach': 1, 'strategies': 1, 'discussed': 1, 'however': 1, 'frustration': 1, 'conflicted': 1, 'independent': 1, 'doesnt': 1, 'sense': 1, 'feeling': 1, 'yes': 1, 'interpreter': 1, 'work': 1, 'feelings': 1, 'guys': 1, 'disrespected': 1, 'upset': 1, 'see': 1, 'apparently': 1}\n", + "{'i': 29, 'think': 15, 'learn': 7, 'how': 5, 'language': 5, 'mother': 5, 'learning': 4, 'understand': 4, 'also': 4, 'english': 4, 'law': 4, 'guy': 4, 'has': 3, 'use': 3, 'resources': 3, 'asshole': 3, 'help': 3, 'languages': 2, 'sure': 2, 'want': 2, 'asking': 2, 'capacity': 2, 'family': 2, 'same': 2, 'feel': 2, 'issue': 2, 'certain': 2, 'makes': 2, 'some': 2, 'tried': 2, 'maybe': 2, 'research': 1, 'people': 1, 'time': 1, 'take': 1, 'easy': 1, 'wired': 1, 'other': 1, 'talk': 1, 'differently': 1, 'easier': 1, 'country': 1, 'foreign': 1, 'gave': 1, 'live': 1, 'go': 1, 'reasonable': 1, 'request': 1, 'culturedcow': 1, 'utilize': 1, 'lives': 1, 'such': 1, 'older': 1, 'wrong': 1, 'loves': 1, 'sound': 1, 'made': 1, 'done': 1, 'america': 1, 'edit': 1, 'try': 1, 'least': 1, 'problem': 1, 'patience': 1, 'brain': 1, 'second': 1, 'easiest': 1, 'does': 1, 'child': 1, 'quickly': 1, 'agree': 1, 'new': 1, 'needs': 1, 'more': 1, 'apps': 1, 'reason': 1, 'wife': 1, 'now': 1, 'according': 1, 'ass': 1, 'thinks': 1, 'thoughts': 1, 'ahole': 1, 'mind': 1, 'changing': 1, 'open': 1, 'guilty': 1, 'believe': 1, 'handle': 1, 'approximately': 1, 'seen': 1, 'ever': 1, 'movie': 1, 'best': 1, 'doubt': 1, 'response': 1, 'fairly': 1, 'correct': 1, 'answer': 1, 'know': 1, 'confused': 1, 'little': 1, 'person': 1, 'polite': 1, 'pick': 1, 'approaching': 1, 'years': 1, '8': 1, 'here': 1, 'mil': 1, 'first': 1, 'approach': 1, 'strategies': 1, 'discussed': 1, 'however': 1, 'frustration': 1, 'conflicted': 1, 'independent': 1, 'doesnt': 1, 'sense': 1, 'feeling': 1, 'yes': 1, 'interpreter': 1, 'work': 1, 'feelings': 1, 'guys': 1, 'disrespected': 1, 'upset': 1, 'see': 1, 'apparently': 1}\n", + "{'i': 29, 'think': 15, 'learn': 7, 'how': 5, 'language': 5, 'mother': 5, 'learning': 4, 'understand': 4, 'also': 4, 'english': 4, 'law': 4, 'guy': 4, 'has': 3, 'use': 3, 'resources': 3, 'asshole': 3, 'help': 3, 'languages': 2, 'sure': 2, 'want': 2, 'asking': 2, 'capacity': 2, 'family': 2, 'same': 2, 'feel': 2, 'issue': 2, 'certain': 2, 'makes': 2, 'some': 2, 'tried': 2, 'maybe': 2, 'research': 1, 'people': 1, 'time': 1, 'take': 1, 'easy': 1, 'wired': 1, 'other': 1, 'talk': 1, 'differently': 1, 'easier': 1, 'country': 1, 'foreign': 1, 'gave': 1, 'live': 1, 'go': 1, 'reasonable': 1, 'request': 1, 'culturedcow': 1, 'utilize': 1, 'lives': 1, 'such': 1, 'older': 1, 'wrong': 1, 'loves': 1, 'sound': 1, 'made': 1, 'done': 1, 'america': 1, 'edit': 1, 'try': 1, 'least': 1, 'problem': 1, 'patience': 1, 'brain': 1, 'second': 1, 'easiest': 1, 'does': 1, 'child': 1, 'quickly': 1, 'agree': 1, 'new': 1, 'needs': 1, 'more': 1, 'apps': 1, 'reason': 1, 'wife': 1, 'now': 1, 'according': 1, 'ass': 1, 'thinks': 1, 'thoughts': 1, 'ahole': 1, 'mind': 1, 'changing': 1, 'open': 1, 'guilty': 1, 'believe': 1, 'handle': 1, 'approximately': 1, 'seen': 1, 'ever': 1, 'movie': 1, 'best': 1, 'doubt': 1, 'response': 1, 'fairly': 1, 'correct': 1, 'answer': 1, 'know': 1, 'confused': 1, 'little': 1, 'person': 1, 'polite': 1, 'pick': 1, 'approaching': 1, 'years': 1, '8': 1, 'here': 1, 'mil': 1, 'first': 1, 'approach': 1, 'strategies': 1, 'discussed': 1, 'however': 1, 'frustration': 1, 'conflicted': 1, 'independent': 1, 'doesnt': 1, 'sense': 1, 'feeling': 1, 'yes': 1, 'interpreter': 1, 'work': 1, 'feelings': 1, 'guys': 1, 'disrespected': 1, 'upset': 1, 'see': 1, 'apparently': 1}\n", + "{'i': 29, 'think': 15, 'learn': 7, 'how': 5, 'language': 5, 'mother': 5, 'learning': 4, 'understand': 4, 'also': 4, 'english': 4, 'law': 4, 'guy': 4, 'has': 3, 'use': 3, 'resources': 3, 'asshole': 3, 'help': 3, 'languages': 2, 'sure': 2, 'want': 2, 'asking': 2, 'capacity': 2, 'family': 2, 'same': 2, 'feel': 2, 'issue': 2, 'certain': 2, 'makes': 2, 'some': 2, 'tried': 2, 'maybe': 2, 'research': 1, 'people': 1, 'time': 1, 'take': 1, 'easy': 1, 'wired': 1, 'other': 1, 'talk': 1, 'differently': 1, 'easier': 1, 'country': 1, 'foreign': 1, 'gave': 1, 'live': 1, 'go': 1, 'reasonable': 1, 'request': 1, 'culturedcow': 1, 'utilize': 1, 'lives': 1, 'such': 1, 'older': 1, 'wrong': 1, 'loves': 1, 'sound': 1, 'made': 1, 'done': 1, 'america': 1, 'edit': 1, 'try': 1, 'least': 1, 'problem': 1, 'patience': 1, 'brain': 1, 'second': 1, 'easiest': 1, 'does': 1, 'child': 1, 'quickly': 1, 'agree': 1, 'new': 1, 'needs': 1, 'more': 1, 'apps': 1, 'reason': 1, 'wife': 1, 'now': 1, 'according': 1, 'ass': 1, 'thinks': 1, 'thoughts': 1, 'ahole': 1, 'mind': 1, 'changing': 1, 'open': 1, 'guilty': 1, 'believe': 1, 'handle': 1, 'approximately': 1, 'seen': 1, 'ever': 1, 'movie': 1, 'best': 1, 'doubt': 1, 'response': 1, 'fairly': 1, 'correct': 1, 'answer': 1, 'know': 1, 'confused': 1, 'little': 1, 'person': 1, 'polite': 1, 'pick': 1, 'approaching': 1, 'years': 1, '8': 1, 'here': 1, 'mil': 1, 'first': 1, 'approach': 1, 'strategies': 1, 'discussed': 1, 'however': 1, 'frustration': 1, 'conflicted': 1, 'independent': 1, 'doesnt': 1, 'sense': 1, 'feeling': 1, 'yes': 1, 'interpreter': 1, 'work': 1, 'feelings': 1, 'guys': 1, 'disrespected': 1, 'upset': 1, 'see': 1, 'apparently': 1}\n", + "{'i': 29, 'think': 15, 'learn': 7, 'how': 5, 'language': 5, 'mother': 5, 'learning': 4, 'understand': 4, 'also': 4, 'english': 4, 'law': 4, 'guy': 4, 'has': 3, 'use': 3, 'resources': 3, 'asshole': 3, 'help': 3, 'languages': 2, 'sure': 2, 'want': 2, 'asking': 2, 'capacity': 2, 'family': 2, 'same': 2, 'feel': 2, 'issue': 2, 'certain': 2, 'makes': 2, 'some': 2, 'tried': 2, 'maybe': 2, 'research': 1, 'people': 1, 'time': 1, 'take': 1, 'easy': 1, 'wired': 1, 'other': 1, 'talk': 1, 'differently': 1, 'easier': 1, 'country': 1, 'foreign': 1, 'gave': 1, 'live': 1, 'go': 1, 'reasonable': 1, 'request': 1, 'culturedcow': 1, 'utilize': 1, 'lives': 1, 'such': 1, 'older': 1, 'wrong': 1, 'loves': 1, 'sound': 1, 'made': 1, 'done': 1, 'america': 1, 'edit': 1, 'try': 1, 'least': 1, 'problem': 1, 'patience': 1, 'brain': 1, 'second': 1, 'easiest': 1, 'does': 1, 'child': 1, 'quickly': 1, 'agree': 1, 'new': 1, 'needs': 1, 'more': 1, 'apps': 1, 'reason': 1, 'wife': 1, 'now': 1, 'according': 1, 'ass': 1, 'thinks': 1, 'thoughts': 1, 'ahole': 1, 'mind': 1, 'changing': 1, 'open': 1, 'guilty': 1, 'believe': 1, 'handle': 1, 'approximately': 1, 'seen': 1, 'ever': 1, 'movie': 1, 'best': 1, 'doubt': 1, 'response': 1, 'fairly': 1, 'correct': 1, 'answer': 1, 'know': 1, 'confused': 1, 'little': 1, 'person': 1, 'polite': 1, 'pick': 1, 'approaching': 1, 'years': 1, '8': 1, 'here': 1, 'mil': 1, 'first': 1, 'approach': 1, 'strategies': 1, 'discussed': 1, 'however': 1, 'frustration': 1, 'conflicted': 1, 'independent': 1, 'doesnt': 1, 'sense': 1, 'feeling': 1, 'yes': 1, 'interpreter': 1, 'work': 1, 'feelings': 1, 'guys': 1, 'disrespected': 1, 'upset': 1, 'see': 1, 'apparently': 1}\n", + "{'i': 29, 'think': 15, 'learn': 7, 'how': 5, 'language': 5, 'mother': 5, 'learning': 4, 'understand': 4, 'also': 4, 'english': 4, 'law': 4, 'guy': 4, 'has': 3, 'use': 3, 'resources': 3, 'asshole': 3, 'help': 3, 'languages': 2, 'sure': 2, 'want': 2, 'asking': 2, 'capacity': 2, 'family': 2, 'same': 2, 'feel': 2, 'issue': 2, 'certain': 2, 'makes': 2, 'some': 2, 'tried': 2, 'maybe': 2, 'research': 1, 'people': 1, 'time': 1, 'take': 1, 'easy': 1, 'wired': 1, 'other': 1, 'talk': 1, 'differently': 1, 'easier': 1, 'country': 1, 'foreign': 1, 'gave': 1, 'live': 1, 'go': 1, 'reasonable': 1, 'request': 1, 'culturedcow': 1, 'utilize': 1, 'lives': 1, 'such': 1, 'older': 1, 'wrong': 1, 'loves': 1, 'sound': 1, 'made': 1, 'done': 1, 'america': 1, 'edit': 1, 'try': 1, 'least': 1, 'problem': 1, 'patience': 1, 'brain': 1, 'second': 1, 'easiest': 1, 'does': 1, 'child': 1, 'quickly': 1, 'agree': 1, 'new': 1, 'needs': 1, 'more': 1, 'apps': 1, 'reason': 1, 'wife': 1, 'now': 1, 'according': 1, 'ass': 1, 'thinks': 1, 'thoughts': 1, 'ahole': 1, 'mind': 1, 'changing': 1, 'open': 1, 'guilty': 1, 'believe': 1, 'handle': 1, 'approximately': 1, 'seen': 1, 'ever': 1, 'movie': 1, 'best': 1, 'doubt': 1, 'response': 1, 'fairly': 1, 'correct': 1, 'answer': 1, 'know': 1, 'confused': 1, 'little': 1, 'person': 1, 'polite': 1, 'pick': 1, 'approaching': 1, 'years': 1, '8': 1, 'here': 1, 'mil': 1, 'first': 1, 'approach': 1, 'strategies': 1, 'discussed': 1, 'however': 1, 'frustration': 1, 'conflicted': 1, 'independent': 1, 'doesnt': 1, 'sense': 1, 'feeling': 1, 'yes': 1, 'interpreter': 1, 'work': 1, 'feelings': 1, 'guys': 1, 'disrespected': 1, 'upset': 1, 'see': 1, 'apparently': 1}\n", + "{'i': 29, 'think': 15, 'learn': 7, 'how': 5, 'language': 5, 'mother': 5, 'learning': 4, 'understand': 4, 'also': 4, 'english': 4, 'law': 4, 'guy': 4, 'has': 3, 'use': 3, 'resources': 3, 'asshole': 3, 'help': 3, 'languages': 2, 'sure': 2, 'want': 2, 'asking': 2, 'capacity': 2, 'family': 2, 'same': 2, 'feel': 2, 'issue': 2, 'certain': 2, 'makes': 2, 'some': 2, 'tried': 2, 'maybe': 2, 'research': 1, 'people': 1, 'time': 1, 'take': 1, 'easy': 1, 'wired': 1, 'other': 1, 'talk': 1, 'differently': 1, 'easier': 1, 'country': 1, 'foreign': 1, 'gave': 1, 'live': 1, 'go': 1, 'reasonable': 1, 'request': 1, 'culturedcow': 1, 'utilize': 1, 'lives': 1, 'such': 1, 'older': 1, 'wrong': 1, 'loves': 1, 'sound': 1, 'made': 1, 'done': 1, 'america': 1, 'edit': 1, 'try': 1, 'least': 1, 'problem': 1, 'patience': 1, 'brain': 1, 'second': 1, 'easiest': 1, 'does': 1, 'child': 1, 'quickly': 1, 'agree': 1, 'new': 1, 'needs': 1, 'more': 1, 'apps': 1, 'reason': 1, 'wife': 1, 'now': 1, 'according': 1, 'ass': 1, 'thinks': 1, 'thoughts': 1, 'ahole': 1, 'mind': 1, 'changing': 1, 'open': 1, 'guilty': 1, 'believe': 1, 'handle': 1, 'approximately': 1, 'seen': 1, 'ever': 1, 'movie': 1, 'best': 1, 'doubt': 1, 'response': 1, 'fairly': 1, 'correct': 1, 'answer': 1, 'know': 1, 'confused': 1, 'little': 1, 'person': 1, 'polite': 1, 'pick': 1, 'approaching': 1, 'years': 1, '8': 1, 'here': 1, 'mil': 1, 'first': 1, 'approach': 1, 'strategies': 1, 'discussed': 1, 'however': 1, 'frustration': 1, 'conflicted': 1, 'independent': 1, 'doesnt': 1, 'sense': 1, 'feeling': 1, 'yes': 1, 'interpreter': 1, 'work': 1, 'feelings': 1, 'guys': 1, 'disrespected': 1, 'upset': 1, 'see': 1, 'apparently': 1}\n", + "{'i': 29, 'think': 15, 'learn': 7, 'how': 5, 'language': 5, 'mother': 5, 'learning': 4, 'understand': 4, 'also': 4, 'english': 4, 'law': 4, 'guy': 4, 'has': 3, 'use': 3, 'resources': 3, 'asshole': 3, 'help': 3, 'languages': 2, 'sure': 2, 'want': 2, 'asking': 2, 'capacity': 2, 'family': 2, 'same': 2, 'feel': 2, 'issue': 2, 'certain': 2, 'makes': 2, 'some': 2, 'tried': 2, 'maybe': 2, 'research': 1, 'people': 1, 'time': 1, 'take': 1, 'easy': 1, 'wired': 1, 'other': 1, 'talk': 1, 'differently': 1, 'easier': 1, 'country': 1, 'foreign': 1, 'gave': 1, 'live': 1, 'go': 1, 'reasonable': 1, 'request': 1, 'culturedcow': 1, 'utilize': 1, 'lives': 1, 'such': 1, 'older': 1, 'wrong': 1, 'loves': 1, 'sound': 1, 'made': 1, 'done': 1, 'america': 1, 'edit': 1, 'try': 1, 'least': 1, 'problem': 1, 'patience': 1, 'brain': 1, 'second': 1, 'easiest': 1, 'does': 1, 'child': 1, 'quickly': 1, 'agree': 1, 'new': 1, 'needs': 1, 'more': 1, 'apps': 1, 'reason': 1, 'wife': 1, 'now': 1, 'according': 1, 'ass': 1, 'thinks': 1, 'thoughts': 1, 'ahole': 1, 'mind': 1, 'changing': 1, 'open': 1, 'guilty': 1, 'believe': 1, 'handle': 1, 'approximately': 1, 'seen': 1, 'ever': 1, 'movie': 1, 'best': 1, 'doubt': 1, 'response': 1, 'fairly': 1, 'correct': 1, 'answer': 1, 'know': 1, 'confused': 1, 'little': 1, 'person': 1, 'polite': 1, 'pick': 1, 'approaching': 1, 'years': 1, '8': 1, 'here': 1, 'mil': 1, 'first': 1, 'approach': 1, 'strategies': 1, 'discussed': 1, 'however': 1, 'frustration': 1, 'conflicted': 1, 'independent': 1, 'doesnt': 1, 'sense': 1, 'feeling': 1, 'yes': 1, 'interpreter': 1, 'work': 1, 'feelings': 1, 'guys': 1, 'disrespected': 1, 'upset': 1, 'see': 1, 'apparently': 1}\n", + "{'i': 29, 'think': 15, 'learn': 7, 'how': 5, 'language': 5, 'mother': 5, 'learning': 4, 'understand': 4, 'also': 4, 'english': 4, 'law': 4, 'guy': 4, 'has': 3, 'use': 3, 'resources': 3, 'asshole': 3, 'help': 3, 'languages': 2, 'sure': 2, 'want': 2, 'asking': 2, 'capacity': 2, 'family': 2, 'same': 2, 'feel': 2, 'issue': 2, 'certain': 2, 'makes': 2, 'some': 2, 'tried': 2, 'maybe': 2, 'research': 1, 'people': 1, 'time': 1, 'take': 1, 'easy': 1, 'wired': 1, 'other': 1, 'talk': 1, 'differently': 1, 'easier': 1, 'country': 1, 'foreign': 1, 'gave': 1, 'live': 1, 'go': 1, 'reasonable': 1, 'request': 1, 'culturedcow': 1, 'utilize': 1, 'lives': 1, 'such': 1, 'older': 1, 'wrong': 1, 'loves': 1, 'sound': 1, 'made': 1, 'done': 1, 'america': 1, 'edit': 1, 'try': 1, 'least': 1, 'problem': 1, 'patience': 1, 'brain': 1, 'second': 1, 'easiest': 1, 'does': 1, 'child': 1, 'quickly': 1, 'agree': 1, 'new': 1, 'needs': 1, 'more': 1, 'apps': 1, 'reason': 1, 'wife': 1, 'now': 1, 'according': 1, 'ass': 1, 'thinks': 1, 'thoughts': 1, 'ahole': 1, 'mind': 1, 'changing': 1, 'open': 1, 'guilty': 1, 'believe': 1, 'handle': 1, 'approximately': 1, 'seen': 1, 'ever': 1, 'movie': 1, 'best': 1, 'doubt': 1, 'response': 1, 'fairly': 1, 'correct': 1, 'answer': 1, 'know': 1, 'confused': 1, 'little': 1, 'person': 1, 'polite': 1, 'pick': 1, 'approaching': 1, 'years': 1, '8': 1, 'here': 1, 'mil': 1, 'first': 1, 'approach': 1, 'strategies': 1, 'discussed': 1, 'however': 1, 'frustration': 1, 'conflicted': 1, 'independent': 1, 'doesnt': 1, 'sense': 1, 'feeling': 1, 'yes': 1, 'interpreter': 1, 'work': 1, 'feelings': 1, 'guys': 1, 'disrespected': 1, 'upset': 1, 'see': 1, 'apparently': 1}\n", + "{'i': 29, 'think': 15, 'learn': 7, 'how': 5, 'language': 5, 'mother': 5, 'learning': 4, 'understand': 4, 'also': 4, 'english': 4, 'law': 4, 'guy': 4, 'has': 3, 'use': 3, 'resources': 3, 'asshole': 3, 'help': 3, 'languages': 2, 'sure': 2, 'want': 2, 'asking': 2, 'capacity': 2, 'family': 2, 'same': 2, 'feel': 2, 'issue': 2, 'certain': 2, 'makes': 2, 'some': 2, 'tried': 2, 'maybe': 2, 'research': 1, 'people': 1, 'time': 1, 'take': 1, 'easy': 1, 'wired': 1, 'other': 1, 'talk': 1, 'differently': 1, 'easier': 1, 'country': 1, 'foreign': 1, 'gave': 1, 'live': 1, 'go': 1, 'reasonable': 1, 'request': 1, 'culturedcow': 1, 'utilize': 1, 'lives': 1, 'such': 1, 'older': 1, 'wrong': 1, 'loves': 1, 'sound': 1, 'made': 1, 'done': 1, 'america': 1, 'edit': 1, 'try': 1, 'least': 1, 'problem': 1, 'patience': 1, 'brain': 1, 'second': 1, 'easiest': 1, 'does': 1, 'child': 1, 'quickly': 1, 'agree': 1, 'new': 1, 'needs': 1, 'more': 1, 'apps': 1, 'reason': 1, 'wife': 1, 'now': 1, 'according': 1, 'ass': 1, 'thinks': 1, 'thoughts': 1, 'ahole': 1, 'mind': 1, 'changing': 1, 'open': 1, 'guilty': 1, 'believe': 1, 'handle': 1, 'approximately': 1, 'seen': 1, 'ever': 1, 'movie': 1, 'best': 1, 'doubt': 1, 'response': 1, 'fairly': 1, 'correct': 1, 'answer': 1, 'know': 1, 'confused': 1, 'little': 1, 'person': 1, 'polite': 1, 'pick': 1, 'approaching': 1, 'years': 1, '8': 1, 'here': 1, 'mil': 1, 'first': 1, 'approach': 1, 'strategies': 1, 'discussed': 1, 'however': 1, 'frustration': 1, 'conflicted': 1, 'independent': 1, 'doesnt': 1, 'sense': 1, 'feeling': 1, 'yes': 1, 'interpreter': 1, 'work': 1, 'feelings': 1, 'guys': 1, 'disrespected': 1, 'upset': 1, 'see': 1, 'apparently': 1}\n", + "{'i': 29, 'think': 15, 'learn': 7, 'how': 5, 'language': 5, 'mother': 5, 'learning': 4, 'understand': 4, 'also': 4, 'english': 4, 'law': 4, 'guy': 4, 'has': 3, 'use': 3, 'resources': 3, 'asshole': 3, 'help': 3, 'languages': 2, 'sure': 2, 'want': 2, 'asking': 2, 'capacity': 2, 'family': 2, 'same': 2, 'feel': 2, 'issue': 2, 'certain': 2, 'makes': 2, 'some': 2, 'tried': 2, 'maybe': 2, 'research': 1, 'people': 1, 'time': 1, 'take': 1, 'easy': 1, 'wired': 1, 'other': 1, 'talk': 1, 'differently': 1, 'easier': 1, 'country': 1, 'foreign': 1, 'gave': 1, 'live': 1, 'go': 1, 'reasonable': 1, 'request': 1, 'culturedcow': 1, 'utilize': 1, 'lives': 1, 'such': 1, 'older': 1, 'wrong': 1, 'loves': 1, 'sound': 1, 'made': 1, 'done': 1, 'america': 1, 'edit': 1, 'try': 1, 'least': 1, 'problem': 1, 'patience': 1, 'brain': 1, 'second': 1, 'easiest': 1, 'does': 1, 'child': 1, 'quickly': 1, 'agree': 1, 'new': 1, 'needs': 1, 'more': 1, 'apps': 1, 'reason': 1, 'wife': 1, 'now': 1, 'according': 1, 'ass': 1, 'thinks': 1, 'thoughts': 1, 'ahole': 1, 'mind': 1, 'changing': 1, 'open': 1, 'guilty': 1, 'believe': 1, 'handle': 1, 'approximately': 1, 'seen': 1, 'ever': 1, 'movie': 1, 'best': 1, 'doubt': 1, 'response': 1, 'fairly': 1, 'correct': 1, 'answer': 1, 'know': 1, 'confused': 1, 'little': 1, 'person': 1, 'polite': 1, 'pick': 1, 'approaching': 1, 'years': 1, '8': 1, 'here': 1, 'mil': 1, 'first': 1, 'approach': 1, 'strategies': 1, 'discussed': 1, 'however': 1, 'frustration': 1, 'conflicted': 1, 'independent': 1, 'doesnt': 1, 'sense': 1, 'feeling': 1, 'yes': 1, 'interpreter': 1, 'work': 1, 'feelings': 1, 'guys': 1, 'disrespected': 1, 'upset': 1, 'see': 1, 'apparently': 1}\n", + "{'i': 29, 'think': 15, 'learn': 7, 'how': 5, 'language': 5, 'mother': 5, 'learning': 4, 'understand': 4, 'also': 4, 'english': 4, 'law': 4, 'guy': 4, 'has': 3, 'use': 3, 'resources': 3, 'asshole': 3, 'help': 3, 'languages': 2, 'sure': 2, 'want': 2, 'asking': 2, 'capacity': 2, 'family': 2, 'same': 2, 'feel': 2, 'issue': 2, 'certain': 2, 'makes': 2, 'some': 2, 'tried': 2, 'maybe': 2, 'research': 1, 'people': 1, 'time': 1, 'take': 1, 'easy': 1, 'wired': 1, 'other': 1, 'talk': 1, 'differently': 1, 'easier': 1, 'country': 1, 'foreign': 1, 'gave': 1, 'live': 1, 'go': 1, 'reasonable': 1, 'request': 1, 'culturedcow': 1, 'utilize': 1, 'lives': 1, 'such': 1, 'older': 1, 'wrong': 1, 'loves': 1, 'sound': 1, 'made': 1, 'done': 1, 'america': 1, 'edit': 1, 'try': 1, 'least': 1, 'problem': 1, 'patience': 1, 'brain': 1, 'second': 1, 'easiest': 1, 'does': 1, 'child': 1, 'quickly': 1, 'agree': 1, 'new': 1, 'needs': 1, 'more': 1, 'apps': 1, 'reason': 1, 'wife': 1, 'now': 1, 'according': 1, 'ass': 1, 'thinks': 1, 'thoughts': 1, 'ahole': 1, 'mind': 1, 'changing': 1, 'open': 1, 'guilty': 1, 'believe': 1, 'handle': 1, 'approximately': 1, 'seen': 1, 'ever': 1, 'movie': 1, 'best': 1, 'doubt': 1, 'response': 1, 'fairly': 1, 'correct': 1, 'answer': 1, 'know': 1, 'confused': 1, 'little': 1, 'person': 1, 'polite': 1, 'pick': 1, 'approaching': 1, 'years': 1, '8': 1, 'here': 1, 'mil': 1, 'first': 1, 'approach': 1, 'strategies': 1, 'discussed': 1, 'however': 1, 'frustration': 1, 'conflicted': 1, 'independent': 1, 'doesnt': 1, 'sense': 1, 'feeling': 1, 'yes': 1, 'interpreter': 1, 'work': 1, 'feelings': 1, 'guys': 1, 'disrespected': 1, 'upset': 1, 'see': 1, 'apparently': 1}\n", + "{'i': 29, 'think': 15, 'learn': 7, 'how': 5, 'language': 5, 'mother': 5, 'learning': 4, 'understand': 4, 'also': 4, 'english': 4, 'law': 4, 'guy': 4, 'has': 3, 'use': 3, 'resources': 3, 'asshole': 3, 'help': 3, 'languages': 2, 'sure': 2, 'want': 2, 'asking': 2, 'capacity': 2, 'family': 2, 'same': 2, 'feel': 2, 'issue': 2, 'certain': 2, 'makes': 2, 'some': 2, 'tried': 2, 'maybe': 2, 'research': 1, 'people': 1, 'time': 1, 'take': 1, 'easy': 1, 'wired': 1, 'other': 1, 'talk': 1, 'differently': 1, 'easier': 1, 'country': 1, 'foreign': 1, 'gave': 1, 'live': 1, 'go': 1, 'reasonable': 1, 'request': 1, 'culturedcow': 1, 'utilize': 1, 'lives': 1, 'such': 1, 'older': 1, 'wrong': 1, 'loves': 1, 'sound': 1, 'made': 1, 'done': 1, 'america': 1, 'edit': 1, 'try': 1, 'least': 1, 'problem': 1, 'patience': 1, 'brain': 1, 'second': 1, 'easiest': 1, 'does': 1, 'child': 1, 'quickly': 1, 'agree': 1, 'new': 1, 'needs': 1, 'more': 1, 'apps': 1, 'reason': 1, 'wife': 1, 'now': 1, 'according': 1, 'ass': 1, 'thinks': 1, 'thoughts': 1, 'ahole': 1, 'mind': 1, 'changing': 1, 'open': 1, 'guilty': 1, 'believe': 1, 'handle': 1, 'approximately': 1, 'seen': 1, 'ever': 1, 'movie': 1, 'best': 1, 'doubt': 1, 'response': 1, 'fairly': 1, 'correct': 1, 'answer': 1, 'know': 1, 'confused': 1, 'little': 1, 'person': 1, 'polite': 1, 'pick': 1, 'approaching': 1, 'years': 1, '8': 1, 'here': 1, 'mil': 1, 'first': 1, 'approach': 1, 'strategies': 1, 'discussed': 1, 'however': 1, 'frustration': 1, 'conflicted': 1, 'independent': 1, 'doesnt': 1, 'sense': 1, 'feeling': 1, 'yes': 1, 'interpreter': 1, 'work': 1, 'feelings': 1, 'guys': 1, 'disrespected': 1, 'upset': 1, 'see': 1, 'apparently': 1}\n", + "{'i': 29, 'think': 15, 'learn': 7, 'how': 5, 'language': 5, 'mother': 5, 'learning': 4, 'understand': 4, 'also': 4, 'english': 4, 'law': 4, 'guy': 4, 'has': 3, 'use': 3, 'resources': 3, 'asshole': 3, 'help': 3, 'languages': 2, 'sure': 2, 'want': 2, 'asking': 2, 'capacity': 2, 'family': 2, 'same': 2, 'feel': 2, 'issue': 2, 'certain': 2, 'makes': 2, 'some': 2, 'tried': 2, 'maybe': 2, 'research': 1, 'people': 1, 'time': 1, 'take': 1, 'easy': 1, 'wired': 1, 'other': 1, 'talk': 1, 'differently': 1, 'easier': 1, 'country': 1, 'foreign': 1, 'gave': 1, 'live': 1, 'go': 1, 'reasonable': 1, 'request': 1, 'culturedcow': 1, 'utilize': 1, 'lives': 1, 'such': 1, 'older': 1, 'wrong': 1, 'loves': 1, 'sound': 1, 'made': 1, 'done': 1, 'america': 1, 'edit': 1, 'try': 1, 'least': 1, 'problem': 1, 'patience': 1, 'brain': 1, 'second': 1, 'easiest': 1, 'does': 1, 'child': 1, 'quickly': 1, 'agree': 1, 'new': 1, 'needs': 1, 'more': 1, 'apps': 1, 'reason': 1, 'wife': 1, 'now': 1, 'according': 1, 'ass': 1, 'thinks': 1, 'thoughts': 1, 'ahole': 1, 'mind': 1, 'changing': 1, 'open': 1, 'guilty': 1, 'believe': 1, 'handle': 1, 'approximately': 1, 'seen': 1, 'ever': 1, 'movie': 1, 'best': 1, 'doubt': 1, 'response': 1, 'fairly': 1, 'correct': 1, 'answer': 1, 'know': 1, 'confused': 1, 'little': 1, 'person': 1, 'polite': 1, 'pick': 1, 'approaching': 1, 'years': 1, '8': 1, 'here': 1, 'mil': 1, 'first': 1, 'approach': 1, 'strategies': 1, 'discussed': 1, 'however': 1, 'frustration': 1, 'conflicted': 1, 'independent': 1, 'doesnt': 1, 'sense': 1, 'feeling': 1, 'yes': 1, 'interpreter': 1, 'work': 1, 'feelings': 1, 'guys': 1, 'disrespected': 1, 'upset': 1, 'see': 1, 'apparently': 1}\n", + "{'i': 29, 'think': 15, 'learn': 7, 'how': 5, 'language': 5, 'mother': 5, 'learning': 4, 'understand': 4, 'also': 4, 'english': 4, 'law': 4, 'guy': 4, 'has': 3, 'use': 3, 'resources': 3, 'asshole': 3, 'help': 3, 'languages': 2, 'sure': 2, 'want': 2, 'asking': 2, 'capacity': 2, 'family': 2, 'same': 2, 'feel': 2, 'issue': 2, 'certain': 2, 'makes': 2, 'some': 2, 'tried': 2, 'maybe': 2, 'research': 1, 'people': 1, 'time': 1, 'take': 1, 'easy': 1, 'wired': 1, 'other': 1, 'talk': 1, 'differently': 1, 'easier': 1, 'country': 1, 'foreign': 1, 'gave': 1, 'live': 1, 'go': 1, 'reasonable': 1, 'request': 1, 'culturedcow': 1, 'utilize': 1, 'lives': 1, 'such': 1, 'older': 1, 'wrong': 1, 'loves': 1, 'sound': 1, 'made': 1, 'done': 1, 'america': 1, 'edit': 1, 'try': 1, 'least': 1, 'problem': 1, 'patience': 1, 'brain': 1, 'second': 1, 'easiest': 1, 'does': 1, 'child': 1, 'quickly': 1, 'agree': 1, 'new': 1, 'needs': 1, 'more': 1, 'apps': 1, 'reason': 1, 'wife': 1, 'now': 1, 'according': 1, 'ass': 1, 'thinks': 1, 'thoughts': 1, 'ahole': 1, 'mind': 1, 'changing': 1, 'open': 1, 'guilty': 1, 'believe': 1, 'handle': 1, 'approximately': 1, 'seen': 1, 'ever': 1, 'movie': 1, 'best': 1, 'doubt': 1, 'response': 1, 'fairly': 1, 'correct': 1, 'answer': 1, 'know': 1, 'confused': 1, 'little': 1, 'person': 1, 'polite': 1, 'pick': 1, 'approaching': 1, 'years': 1, '8': 1, 'here': 1, 'mil': 1, 'first': 1, 'approach': 1, 'strategies': 1, 'discussed': 1, 'however': 1, 'frustration': 1, 'conflicted': 1, 'independent': 1, 'doesnt': 1, 'sense': 1, 'feeling': 1, 'yes': 1, 'interpreter': 1, 'work': 1, 'feelings': 1, 'guys': 1, 'disrespected': 1, 'upset': 1, 'see': 1, 'apparently': 1}\n", + "{'i': 29, 'think': 15, 'learn': 7, 'how': 5, 'language': 5, 'mother': 5, 'learning': 4, 'understand': 4, 'also': 4, 'english': 4, 'law': 4, 'guy': 4, 'has': 3, 'use': 3, 'resources': 3, 'asshole': 3, 'help': 3, 'languages': 2, 'sure': 2, 'want': 2, 'asking': 2, 'capacity': 2, 'family': 2, 'same': 2, 'feel': 2, 'issue': 2, 'certain': 2, 'makes': 2, 'some': 2, 'tried': 2, 'maybe': 2, 'research': 1, 'people': 1, 'time': 1, 'take': 1, 'easy': 1, 'wired': 1, 'other': 1, 'talk': 1, 'differently': 1, 'easier': 1, 'country': 1, 'foreign': 1, 'gave': 1, 'live': 1, 'go': 1, 'reasonable': 1, 'request': 1, 'culturedcow': 1, 'utilize': 1, 'lives': 1, 'such': 1, 'older': 1, 'wrong': 1, 'loves': 1, 'sound': 1, 'made': 1, 'done': 1, 'america': 1, 'edit': 1, 'try': 1, 'least': 1, 'problem': 1, 'patience': 1, 'brain': 1, 'second': 1, 'easiest': 1, 'does': 1, 'child': 1, 'quickly': 1, 'agree': 1, 'new': 1, 'needs': 1, 'more': 1, 'apps': 1, 'reason': 1, 'wife': 1, 'now': 1, 'according': 1, 'ass': 1, 'thinks': 1, 'thoughts': 1, 'ahole': 1, 'mind': 1, 'changing': 1, 'open': 1, 'guilty': 1, 'believe': 1, 'handle': 1, 'approximately': 1, 'seen': 1, 'ever': 1, 'movie': 1, 'best': 1, 'doubt': 1, 'response': 1, 'fairly': 1, 'correct': 1, 'answer': 1, 'know': 1, 'confused': 1, 'little': 1, 'person': 1, 'polite': 1, 'pick': 1, 'approaching': 1, 'years': 1, '8': 1, 'here': 1, 'mil': 1, 'first': 1, 'approach': 1, 'strategies': 1, 'discussed': 1, 'however': 1, 'frustration': 1, 'conflicted': 1, 'independent': 1, 'doesnt': 1, 'sense': 1, 'feeling': 1, 'yes': 1, 'interpreter': 1, 'work': 1, 'feelings': 1, 'guys': 1, 'disrespected': 1, 'upset': 1, 'see': 1, 'apparently': 1}\n", + "{'i': 29, 'think': 15, 'learn': 7, 'how': 5, 'language': 5, 'mother': 5, 'learning': 4, 'understand': 4, 'also': 4, 'english': 4, 'law': 4, 'guy': 4, 'has': 3, 'use': 3, 'resources': 3, 'asshole': 3, 'help': 3, 'languages': 2, 'sure': 2, 'want': 2, 'asking': 2, 'capacity': 2, 'family': 2, 'same': 2, 'feel': 2, 'issue': 2, 'certain': 2, 'makes': 2, 'some': 2, 'tried': 2, 'maybe': 2, 'research': 1, 'people': 1, 'time': 1, 'take': 1, 'easy': 1, 'wired': 1, 'other': 1, 'talk': 1, 'differently': 1, 'easier': 1, 'country': 1, 'foreign': 1, 'gave': 1, 'live': 1, 'go': 1, 'reasonable': 1, 'request': 1, 'culturedcow': 1, 'utilize': 1, 'lives': 1, 'such': 1, 'older': 1, 'wrong': 1, 'loves': 1, 'sound': 1, 'made': 1, 'done': 1, 'america': 1, 'edit': 1, 'try': 1, 'least': 1, 'problem': 1, 'patience': 1, 'brain': 1, 'second': 1, 'easiest': 1, 'does': 1, 'child': 1, 'quickly': 1, 'agree': 1, 'new': 1, 'needs': 1, 'more': 1, 'apps': 1, 'reason': 1, 'wife': 1, 'now': 1, 'according': 1, 'ass': 1, 'thinks': 1, 'thoughts': 1, 'ahole': 1, 'mind': 1, 'changing': 1, 'open': 1, 'guilty': 1, 'believe': 1, 'handle': 1, 'approximately': 1, 'seen': 1, 'ever': 1, 'movie': 1, 'best': 1, 'doubt': 1, 'response': 1, 'fairly': 1, 'correct': 1, 'answer': 1, 'know': 1, 'confused': 1, 'little': 1, 'person': 1, 'polite': 1, 'pick': 1, 'approaching': 1, 'years': 1, '8': 1, 'here': 1, 'mil': 1, 'first': 1, 'approach': 1, 'strategies': 1, 'discussed': 1, 'however': 1, 'frustration': 1, 'conflicted': 1, 'independent': 1, 'doesnt': 1, 'sense': 1, 'feeling': 1, 'yes': 1, 'interpreter': 1, 'work': 1, 'feelings': 1, 'guys': 1, 'disrespected': 1, 'upset': 1, 'see': 1, 'apparently': 1}\n", + "{'i': 29, 'think': 15, 'learn': 7, 'how': 5, 'language': 5, 'mother': 5, 'learning': 4, 'understand': 4, 'also': 4, 'english': 4, 'law': 4, 'guy': 4, 'has': 3, 'use': 3, 'resources': 3, 'asshole': 3, 'help': 3, 'languages': 2, 'sure': 2, 'want': 2, 'asking': 2, 'capacity': 2, 'family': 2, 'same': 2, 'feel': 2, 'issue': 2, 'certain': 2, 'makes': 2, 'some': 2, 'tried': 2, 'maybe': 2, 'research': 1, 'people': 1, 'time': 1, 'take': 1, 'easy': 1, 'wired': 1, 'other': 1, 'talk': 1, 'differently': 1, 'easier': 1, 'country': 1, 'foreign': 1, 'gave': 1, 'live': 1, 'go': 1, 'reasonable': 1, 'request': 1, 'culturedcow': 1, 'utilize': 1, 'lives': 1, 'such': 1, 'older': 1, 'wrong': 1, 'loves': 1, 'sound': 1, 'made': 1, 'done': 1, 'america': 1, 'edit': 1, 'try': 1, 'least': 1, 'problem': 1, 'patience': 1, 'brain': 1, 'second': 1, 'easiest': 1, 'does': 1, 'child': 1, 'quickly': 1, 'agree': 1, 'new': 1, 'needs': 1, 'more': 1, 'apps': 1, 'reason': 1, 'wife': 1, 'now': 1, 'according': 1, 'ass': 1, 'thinks': 1, 'thoughts': 1, 'ahole': 1, 'mind': 1, 'changing': 1, 'open': 1, 'guilty': 1, 'believe': 1, 'handle': 1, 'approximately': 1, 'seen': 1, 'ever': 1, 'movie': 1, 'best': 1, 'doubt': 1, 'response': 1, 'fairly': 1, 'correct': 1, 'answer': 1, 'know': 1, 'confused': 1, 'little': 1, 'person': 1, 'polite': 1, 'pick': 1, 'approaching': 1, 'years': 1, '8': 1, 'here': 1, 'mil': 1, 'first': 1, 'approach': 1, 'strategies': 1, 'discussed': 1, 'however': 1, 'frustration': 1, 'conflicted': 1, 'independent': 1, 'doesnt': 1, 'sense': 1, 'feeling': 1, 'yes': 1, 'interpreter': 1, 'work': 1, 'feelings': 1, 'guys': 1, 'disrespected': 1, 'upset': 1, 'see': 1, 'apparently': 1}\n", + "{'i': 29, 'think': 15, 'learn': 7, 'how': 5, 'language': 5, 'mother': 5, 'learning': 4, 'understand': 4, 'also': 4, 'english': 4, 'law': 4, 'guy': 4, 'has': 3, 'use': 3, 'resources': 3, 'asshole': 3, 'help': 3, 'languages': 2, 'sure': 2, 'want': 2, 'asking': 2, 'capacity': 2, 'family': 2, 'same': 2, 'feel': 2, 'issue': 2, 'certain': 2, 'makes': 2, 'some': 2, 'tried': 2, 'maybe': 2, 'research': 1, 'people': 1, 'time': 1, 'take': 1, 'easy': 1, 'wired': 1, 'other': 1, 'talk': 1, 'differently': 1, 'easier': 1, 'country': 1, 'foreign': 1, 'gave': 1, 'live': 1, 'go': 1, 'reasonable': 1, 'request': 1, 'culturedcow': 1, 'utilize': 1, 'lives': 1, 'such': 1, 'older': 1, 'wrong': 1, 'loves': 1, 'sound': 1, 'made': 1, 'done': 1, 'america': 1, 'edit': 1, 'try': 1, 'least': 1, 'problem': 1, 'patience': 1, 'brain': 1, 'second': 1, 'easiest': 1, 'does': 1, 'child': 1, 'quickly': 1, 'agree': 1, 'new': 1, 'needs': 1, 'more': 1, 'apps': 1, 'reason': 1, 'wife': 1, 'now': 1, 'according': 1, 'ass': 1, 'thinks': 1, 'thoughts': 1, 'ahole': 1, 'mind': 1, 'changing': 1, 'open': 1, 'guilty': 1, 'believe': 1, 'handle': 1, 'approximately': 1, 'seen': 1, 'ever': 1, 'movie': 1, 'best': 1, 'doubt': 1, 'response': 1, 'fairly': 1, 'correct': 1, 'answer': 1, 'know': 1, 'confused': 1, 'little': 1, 'person': 1, 'polite': 1, 'pick': 1, 'approaching': 1, 'years': 1, '8': 1, 'here': 1, 'mil': 1, 'first': 1, 'approach': 1, 'strategies': 1, 'discussed': 1, 'however': 1, 'frustration': 1, 'conflicted': 1, 'independent': 1, 'doesnt': 1, 'sense': 1, 'feeling': 1, 'yes': 1, 'interpreter': 1, 'work': 1, 'feelings': 1, 'guys': 1, 'disrespected': 1, 'upset': 1, 'see': 1, 'apparently': 1}\n", + "{'i': 2, 'please': 2, 'hello': 1, 'how': 1, 'answer': 1, 'start': 1, 'here': 1, 'question': 1, 'sure': 1, 'rest': 1, 'team': 1, 'help': 1, 'figure': 1, 'want': 1}\n", + "{'i': 2, 'please': 2, 'hello': 1, 'how': 1, 'answer': 1, 'start': 1, 'here': 1, 'question': 1, 'sure': 1, 'rest': 1, 'team': 1, 'help': 1, 'figure': 1, 'want': 1}\n", + "{'i': 2, 'please': 2, 'hello': 1, 'how': 1, 'answer': 1, 'start': 1, 'here': 1, 'question': 1, 'sure': 1, 'rest': 1, 'team': 1, 'help': 1, 'figure': 1, 'want': 1}\n", + "{'i': 2, 'please': 2, 'hello': 1, 'how': 1, 'answer': 1, 'start': 1, 'here': 1, 'question': 1, 'sure': 1, 'rest': 1, 'team': 1, 'help': 1, 'figure': 1, 'want': 1}\n", + "{'i': 2, 'please': 2, 'hello': 1, 'how': 1, 'answer': 1, 'start': 1, 'here': 1, 'question': 1, 'sure': 1, 'rest': 1, 'team': 1, 'help': 1, 'figure': 1, 'want': 1}\n", + "{'fair': 2, 'hey': 1, 'bro': 1, 'lets': 1, 'split': 1, '5050': 1, 'maybe': 1, 'how': 1, '6040': 1, 'i': 1, 'doubt': 1, 'otherwise': 1, 'seems': 1}\n", + "{'fair': 2, 'hey': 1, 'bro': 1, 'lets': 1, 'split': 1, '5050': 1, 'maybe': 1, 'how': 1, '6040': 1, 'i': 1, 'doubt': 1, 'otherwise': 1, 'seems': 1}\n", + "{'fair': 2, 'hey': 1, 'bro': 1, 'lets': 1, 'split': 1, '5050': 1, 'maybe': 1, 'how': 1, '6040': 1, 'i': 1, 'doubt': 1, 'otherwise': 1, 'seems': 1}\n", + "{'fair': 2, 'hey': 1, 'bro': 1, 'lets': 1, 'split': 1, '5050': 1, 'maybe': 1, 'how': 1, '6040': 1, 'i': 1, 'doubt': 1, 'otherwise': 1, 'seems': 1}\n", + "{'i': 2, 'please': 2, 'sure': 1, 'rest': 1, 'team': 1, 'help': 1, 'figure': 1, 'want': 1}\n", + "{'i': 2, 'please': 2, 'sure': 1, 'rest': 1, 'team': 1, 'help': 1, 'figure': 1, 'want': 1}\n", + "{'i': 3, 'split': 2, 'seems': 1, 'possible': 1, 'see': 1, 'thinking': 1, 'disagree': 1, 'only': 1, 'chance': 1, 'understand': 1, 'how': 1, 'agree': 1, 'im': 1, 'making': 1, '6040': 1}\n", + "{'i': 3, 'split': 2, 'seems': 1, 'possible': 1, 'see': 1, 'thinking': 1, 'disagree': 1, 'only': 1, 'chance': 1, 'understand': 1, 'how': 1, 'agree': 1, 'im': 1, 'making': 1, '6040': 1}\n", + "{'i': 3, 'split': 2, 'seems': 1, 'possible': 1, 'see': 1, 'thinking': 1, 'disagree': 1, 'only': 1, 'chance': 1, 'understand': 1, 'how': 1, 'agree': 1, 'im': 1, 'making': 1, '6040': 1}\n", + "{'i': 3, 'split': 2, 'seems': 1, 'possible': 1, 'see': 1, 'thinking': 1, 'disagree': 1, 'only': 1, 'chance': 1, 'understand': 1, 'how': 1, 'agree': 1, 'im': 1, 'making': 1, '6040': 1}\n", + "{'i': 6, 'think': 4, 'women': 3, 'stem': 2, 'gender': 2, 'hiring': 2, 'their': 2, 'address': 2, 'something': 2, 'mindful': 1, 'gap': 1, 'look': 1, 'simply': 1, 'done': 1, 'explicitly': 1, 'companies': 1, 'issues': 1, 'decisions': 1, 'priority': 1, 'implementing': 1, 'even': 1, 'discrepancy': 1, 'through': 1, 'hire': 1, 'hey': 1, 'believer': 1, 'careers': 1, 'try': 1, 'else': 1, 'ok': 1, 'leave': 1, 'team': 1, 'understand': 1, 'perspective': 1, 'agree': 1, 'want': 1, 'resentment': 1, 'workplace': 1, 'further': 1, 'compound': 1, 'issue': 1, 'looking': 1, 'true': 1, 'underrepresented': 1, 'practices': 1}\n", + "{'i': 6, 'think': 4, 'women': 3, 'stem': 2, 'gender': 2, 'hiring': 2, 'their': 2, 'address': 2, 'something': 2, 'mindful': 1, 'gap': 1, 'look': 1, 'simply': 1, 'done': 1, 'explicitly': 1, 'companies': 1, 'issues': 1, 'decisions': 1, 'priority': 1, 'implementing': 1, 'even': 1, 'discrepancy': 1, 'through': 1, 'hire': 1, 'hey': 1, 'believer': 1, 'careers': 1, 'try': 1, 'else': 1, 'ok': 1, 'leave': 1, 'team': 1, 'understand': 1, 'perspective': 1, 'agree': 1, 'want': 1, 'resentment': 1, 'workplace': 1, 'further': 1, 'compound': 1, 'issue': 1, 'looking': 1, 'true': 1, 'underrepresented': 1, 'practices': 1}\n", + "{'i': 6, 'think': 4, 'women': 3, 'stem': 2, 'gender': 2, 'hiring': 2, 'their': 2, 'address': 2, 'something': 2, 'mindful': 1, 'gap': 1, 'look': 1, 'simply': 1, 'done': 1, 'explicitly': 1, 'companies': 1, 'issues': 1, 'decisions': 1, 'priority': 1, 'implementing': 1, 'even': 1, 'discrepancy': 1, 'through': 1, 'hire': 1, 'hey': 1, 'believer': 1, 'careers': 1, 'try': 1, 'else': 1, 'ok': 1, 'leave': 1, 'team': 1, 'understand': 1, 'perspective': 1, 'agree': 1, 'want': 1, 'resentment': 1, 'workplace': 1, 'further': 1, 'compound': 1, 'issue': 1, 'looking': 1, 'true': 1, 'underrepresented': 1, 'practices': 1}\n", + "{'i': 6, 'think': 4, 'women': 3, 'stem': 2, 'gender': 2, 'hiring': 2, 'their': 2, 'address': 2, 'something': 2, 'mindful': 1, 'gap': 1, 'look': 1, 'simply': 1, 'done': 1, 'explicitly': 1, 'companies': 1, 'issues': 1, 'decisions': 1, 'priority': 1, 'implementing': 1, 'even': 1, 'discrepancy': 1, 'through': 1, 'hire': 1, 'hey': 1, 'believer': 1, 'careers': 1, 'try': 1, 'else': 1, 'ok': 1, 'leave': 1, 'team': 1, 'understand': 1, 'perspective': 1, 'agree': 1, 'want': 1, 'resentment': 1, 'workplace': 1, 'further': 1, 'compound': 1, 'issue': 1, 'looking': 1, 'true': 1, 'underrepresented': 1, 'practices': 1}\n", + "{'i': 5, 'think': 3, 'women': 3, 'gender': 2, 'address': 2, 'hiring': 2, 'their': 2, 'stem': 2, 'mindful': 1, 'even': 1, 'careers': 1, 'believer': 1, 'something': 1, 'done': 1, 'through': 1, 'issues': 1, 'discrepancy': 1, 'implementing': 1, 'simply': 1, 'priority': 1, 'look': 1, 'gap': 1, 'underrepresented': 1, 'companies': 1, 'explicitly': 1, 'hire': 1, 'decisions': 1, 'honestly': 1, 'true': 1, 'problem': 1, 'much': 1, 'plan': 1, 'dumbest': 1, 'idea': 1, 'ive': 1, 'heard': 1, 'actually': 1, 'dumb': 1, 'af': 1, 'ur': 1, 'here': 1, 'thank': 1, 'understand': 1, 'perspective': 1, 'agree': 1, 'want': 1, 'resentment': 1, 'workplace': 1, 'further': 1, 'compound': 1, 'issue': 1, 'looking': 1, 'practices': 1}\n", + "{'i': 5, 'think': 3, 'women': 3, 'gender': 2, 'address': 2, 'hiring': 2, 'their': 2, 'stem': 2, 'mindful': 1, 'even': 1, 'careers': 1, 'believer': 1, 'something': 1, 'done': 1, 'through': 1, 'issues': 1, 'discrepancy': 1, 'implementing': 1, 'simply': 1, 'priority': 1, 'look': 1, 'gap': 1, 'underrepresented': 1, 'companies': 1, 'explicitly': 1, 'hire': 1, 'decisions': 1, 'honestly': 1, 'true': 1, 'problem': 1, 'much': 1, 'plan': 1, 'dumbest': 1, 'idea': 1, 'ive': 1, 'heard': 1, 'actually': 1, 'dumb': 1, 'af': 1, 'ur': 1, 'here': 1, 'thank': 1, 'understand': 1, 'perspective': 1, 'agree': 1, 'want': 1, 'resentment': 1, 'workplace': 1, 'further': 1, 'compound': 1, 'issue': 1, 'looking': 1, 'practices': 1}\n", + "{'i': 5, 'think': 3, 'women': 3, 'gender': 2, 'address': 2, 'hiring': 2, 'their': 2, 'stem': 2, 'mindful': 1, 'even': 1, 'careers': 1, 'believer': 1, 'something': 1, 'done': 1, 'through': 1, 'issues': 1, 'discrepancy': 1, 'implementing': 1, 'simply': 1, 'priority': 1, 'look': 1, 'gap': 1, 'underrepresented': 1, 'companies': 1, 'explicitly': 1, 'hire': 1, 'decisions': 1, 'honestly': 1, 'true': 1, 'problem': 1, 'much': 1, 'plan': 1, 'dumbest': 1, 'idea': 1, 'ive': 1, 'heard': 1, 'actually': 1, 'dumb': 1, 'af': 1, 'ur': 1, 'here': 1, 'thank': 1, 'understand': 1, 'perspective': 1, 'agree': 1, 'want': 1, 'resentment': 1, 'workplace': 1, 'further': 1, 'compound': 1, 'issue': 1, 'looking': 1, 'practices': 1}\n", + "{'i': 5, 'think': 3, 'women': 3, 'gender': 2, 'address': 2, 'hiring': 2, 'their': 2, 'stem': 2, 'mindful': 1, 'even': 1, 'careers': 1, 'believer': 1, 'something': 1, 'done': 1, 'through': 1, 'issues': 1, 'discrepancy': 1, 'implementing': 1, 'simply': 1, 'priority': 1, 'look': 1, 'gap': 1, 'underrepresented': 1, 'companies': 1, 'explicitly': 1, 'hire': 1, 'decisions': 1, 'honestly': 1, 'true': 1, 'problem': 1, 'much': 1, 'plan': 1, 'dumbest': 1, 'idea': 1, 'ive': 1, 'heard': 1, 'actually': 1, 'dumb': 1, 'af': 1, 'ur': 1, 'here': 1, 'thank': 1, 'understand': 1, 'perspective': 1, 'agree': 1, 'want': 1, 'resentment': 1, 'workplace': 1, 'further': 1, 'compound': 1, 'issue': 1, 'looking': 1, 'practices': 1}\n", + "{'i': 5, 'think': 3, 'women': 3, 'gender': 2, 'address': 2, 'hiring': 2, 'their': 2, 'stem': 2, 'mindful': 1, 'even': 1, 'careers': 1, 'believer': 1, 'something': 1, 'done': 1, 'through': 1, 'issues': 1, 'discrepancy': 1, 'implementing': 1, 'simply': 1, 'priority': 1, 'look': 1, 'gap': 1, 'underrepresented': 1, 'companies': 1, 'explicitly': 1, 'hire': 1, 'decisions': 1, 'honestly': 1, 'true': 1, 'problem': 1, 'much': 1, 'plan': 1, 'dumbest': 1, 'idea': 1, 'ive': 1, 'heard': 1, 'actually': 1, 'dumb': 1, 'af': 1, 'ur': 1, 'here': 1, 'thank': 1, 'understand': 1, 'perspective': 1, 'agree': 1, 'want': 1, 'resentment': 1, 'workplace': 1, 'further': 1, 'compound': 1, 'issue': 1, 'looking': 1, 'practices': 1}\n", + "{'i': 7, 'think': 3, 'women': 3, 'stem': 2, 'address': 2, 'understand': 2, 'gender': 2, 'sorry': 2, 'their': 2, 'hiring': 2, 'pleasure': 1, 'decisions': 1, 'discrepancy': 1, 'even': 1, 'implementing': 1, 'priority': 1, 'hire': 1, 'companies': 1, 'explicitly': 1, 'something': 1, 'simply': 1, 'mindful': 1, 'gap': 1, 'look': 1, 'issues': 1, 'through': 1, 'done': 1, 'underrepresented': 1, 'believer': 1, 'agree': 1, 'meet': 1, 'try': 1, 'next': 1, 'please': 1, 'explain': 1, 'thinking': 1, 'mean': 1, 'perspective': 1, 'want': 1, 'careers': 1, 'resentment': 1, 'workplace': 1, 'further': 1, 'compound': 1, 'issue': 1, 'looking': 1, 'true': 1, 'honor': 1, 'practices': 1}\n", + "{'i': 7, 'think': 3, 'women': 3, 'stem': 2, 'address': 2, 'understand': 2, 'gender': 2, 'sorry': 2, 'their': 2, 'hiring': 2, 'pleasure': 1, 'decisions': 1, 'discrepancy': 1, 'even': 1, 'implementing': 1, 'priority': 1, 'hire': 1, 'companies': 1, 'explicitly': 1, 'something': 1, 'simply': 1, 'mindful': 1, 'gap': 1, 'look': 1, 'issues': 1, 'through': 1, 'done': 1, 'underrepresented': 1, 'believer': 1, 'agree': 1, 'meet': 1, 'try': 1, 'next': 1, 'please': 1, 'explain': 1, 'thinking': 1, 'mean': 1, 'perspective': 1, 'want': 1, 'careers': 1, 'resentment': 1, 'workplace': 1, 'further': 1, 'compound': 1, 'issue': 1, 'looking': 1, 'true': 1, 'honor': 1, 'practices': 1}\n", + "{'i': 7, 'think': 3, 'women': 3, 'stem': 2, 'address': 2, 'understand': 2, 'gender': 2, 'sorry': 2, 'their': 2, 'hiring': 2, 'pleasure': 1, 'decisions': 1, 'discrepancy': 1, 'even': 1, 'implementing': 1, 'priority': 1, 'hire': 1, 'companies': 1, 'explicitly': 1, 'something': 1, 'simply': 1, 'mindful': 1, 'gap': 1, 'look': 1, 'issues': 1, 'through': 1, 'done': 1, 'underrepresented': 1, 'believer': 1, 'agree': 1, 'meet': 1, 'try': 1, 'next': 1, 'please': 1, 'explain': 1, 'thinking': 1, 'mean': 1, 'perspective': 1, 'want': 1, 'careers': 1, 'resentment': 1, 'workplace': 1, 'further': 1, 'compound': 1, 'issue': 1, 'looking': 1, 'true': 1, 'honor': 1, 'practices': 1}\n", + "{'i': 7, 'think': 3, 'women': 3, 'stem': 2, 'address': 2, 'understand': 2, 'gender': 2, 'sorry': 2, 'their': 2, 'hiring': 2, 'pleasure': 1, 'decisions': 1, 'discrepancy': 1, 'even': 1, 'implementing': 1, 'priority': 1, 'hire': 1, 'companies': 1, 'explicitly': 1, 'something': 1, 'simply': 1, 'mindful': 1, 'gap': 1, 'look': 1, 'issues': 1, 'through': 1, 'done': 1, 'underrepresented': 1, 'believer': 1, 'agree': 1, 'meet': 1, 'try': 1, 'next': 1, 'please': 1, 'explain': 1, 'thinking': 1, 'mean': 1, 'perspective': 1, 'want': 1, 'careers': 1, 'resentment': 1, 'workplace': 1, 'further': 1, 'compound': 1, 'issue': 1, 'looking': 1, 'true': 1, 'honor': 1, 'practices': 1}\n", + "{'i': 7, 'think': 3, 'women': 3, 'stem': 2, 'address': 2, 'understand': 2, 'gender': 2, 'sorry': 2, 'their': 2, 'hiring': 2, 'pleasure': 1, 'decisions': 1, 'discrepancy': 1, 'even': 1, 'implementing': 1, 'priority': 1, 'hire': 1, 'companies': 1, 'explicitly': 1, 'something': 1, 'simply': 1, 'mindful': 1, 'gap': 1, 'look': 1, 'issues': 1, 'through': 1, 'done': 1, 'underrepresented': 1, 'believer': 1, 'agree': 1, 'meet': 1, 'try': 1, 'next': 1, 'please': 1, 'explain': 1, 'thinking': 1, 'mean': 1, 'perspective': 1, 'want': 1, 'careers': 1, 'resentment': 1, 'workplace': 1, 'further': 1, 'compound': 1, 'issue': 1, 'looking': 1, 'true': 1, 'honor': 1, 'practices': 1}\n", + "{'i': 6, 'think': 3, 'women': 3, 'gender': 2, 'want': 2, 'stem': 2, 'hiring': 2, 'their': 2, 'address': 2, 'first': 2, 'simply': 1, 'hire': 1, 'done': 1, 'companies': 1, 'mindful': 1, 'decisions': 1, 'gap': 1, 'priority': 1, 'implementing': 1, 'look': 1, 'even': 1, 'discrepancy': 1, 'issues': 1, 'through': 1, 'explicitly': 1, 'careers': 1, 'something': 1, 'believer': 1, 'work': 1, 'lets': 1, 'fine': 1, 'ok': 1, 'part': 1, 'second': 1, 'understand': 1, 'perspective': 1, 'agree': 1, 'resentment': 1, 'workplace': 1, 'further': 1, 'compound': 1, 'issue': 1, 'looking': 1, 'true': 1, 'underrepresented': 1, 'practices': 1}\n", + "{'i': 6, 'think': 3, 'women': 3, 'gender': 2, 'want': 2, 'stem': 2, 'hiring': 2, 'their': 2, 'address': 2, 'first': 2, 'simply': 1, 'hire': 1, 'done': 1, 'companies': 1, 'mindful': 1, 'decisions': 1, 'gap': 1, 'priority': 1, 'implementing': 1, 'look': 1, 'even': 1, 'discrepancy': 1, 'issues': 1, 'through': 1, 'explicitly': 1, 'careers': 1, 'something': 1, 'believer': 1, 'work': 1, 'lets': 1, 'fine': 1, 'ok': 1, 'part': 1, 'second': 1, 'understand': 1, 'perspective': 1, 'agree': 1, 'resentment': 1, 'workplace': 1, 'further': 1, 'compound': 1, 'issue': 1, 'looking': 1, 'true': 1, 'underrepresented': 1, 'practices': 1}\n", + "{'i': 6, 'think': 3, 'women': 3, 'gender': 2, 'want': 2, 'stem': 2, 'hiring': 2, 'their': 2, 'address': 2, 'first': 2, 'simply': 1, 'hire': 1, 'done': 1, 'companies': 1, 'mindful': 1, 'decisions': 1, 'gap': 1, 'priority': 1, 'implementing': 1, 'look': 1, 'even': 1, 'discrepancy': 1, 'issues': 1, 'through': 1, 'explicitly': 1, 'careers': 1, 'something': 1, 'believer': 1, 'work': 1, 'lets': 1, 'fine': 1, 'ok': 1, 'part': 1, 'second': 1, 'understand': 1, 'perspective': 1, 'agree': 1, 'resentment': 1, 'workplace': 1, 'further': 1, 'compound': 1, 'issue': 1, 'looking': 1, 'true': 1, 'underrepresented': 1, 'practices': 1}\n", + "{'i': 6, 'think': 3, 'women': 3, 'gender': 2, 'want': 2, 'stem': 2, 'hiring': 2, 'their': 2, 'address': 2, 'first': 2, 'simply': 1, 'hire': 1, 'done': 1, 'companies': 1, 'mindful': 1, 'decisions': 1, 'gap': 1, 'priority': 1, 'implementing': 1, 'look': 1, 'even': 1, 'discrepancy': 1, 'issues': 1, 'through': 1, 'explicitly': 1, 'careers': 1, 'something': 1, 'believer': 1, 'work': 1, 'lets': 1, 'fine': 1, 'ok': 1, 'part': 1, 'second': 1, 'understand': 1, 'perspective': 1, 'agree': 1, 'resentment': 1, 'workplace': 1, 'further': 1, 'compound': 1, 'issue': 1, 'looking': 1, 'true': 1, 'underrepresented': 1, 'practices': 1}\n", + "{'i': 11, 'think': 5, 'please': 4, 'work': 4, 'rn': 4, 'ok': 4, 'women': 3, 'error': 2, 'hiring': 2, 'stem': 2, 'their': 2, 'gender': 2, 'thing': 2, 'whole': 2, 'redo': 2, 'begin': 2, 'forgive': 2, 'start': 2, 'im': 2, 'exhuasted': 2, 'care': 2, 'long': 2, 'appreciate': 2, 'finish': 2, 'part': 2, 'address': 2, 'mindful': 1, 'gap': 1, 'look': 1, 'issues': 1, 'through': 1, 'simply': 1, 'hire': 1, 'explicitly': 1, 'companies': 1, 'even': 1, 'decisions': 1, 'priority': 1, 'implementing': 1, 'compound': 1, 'discrepancy': 1, 'further': 1, 'understand': 1, 'perspective': 1, 'agree': 1, 'want': 1, 'resentment': 1, 'workplace': 1, 'issue': 1, 'done': 1, 'looking': 1, 'true': 1, 'underrepresented': 1, 'careers': 1, 'believer': 1, 'something': 1, 'practices': 1}\n", + "{'i': 11, 'think': 5, 'please': 4, 'work': 4, 'rn': 4, 'ok': 4, 'women': 3, 'error': 2, 'hiring': 2, 'stem': 2, 'their': 2, 'gender': 2, 'thing': 2, 'whole': 2, 'redo': 2, 'begin': 2, 'forgive': 2, 'start': 2, 'im': 2, 'exhuasted': 2, 'care': 2, 'long': 2, 'appreciate': 2, 'finish': 2, 'part': 2, 'address': 2, 'mindful': 1, 'gap': 1, 'look': 1, 'issues': 1, 'through': 1, 'simply': 1, 'hire': 1, 'explicitly': 1, 'companies': 1, 'even': 1, 'decisions': 1, 'priority': 1, 'implementing': 1, 'compound': 1, 'discrepancy': 1, 'further': 1, 'understand': 1, 'perspective': 1, 'agree': 1, 'want': 1, 'resentment': 1, 'workplace': 1, 'issue': 1, 'done': 1, 'looking': 1, 'true': 1, 'underrepresented': 1, 'careers': 1, 'believer': 1, 'something': 1, 'practices': 1}\n", + "{'i': 11, 'think': 5, 'please': 4, 'work': 4, 'rn': 4, 'ok': 4, 'women': 3, 'error': 2, 'hiring': 2, 'stem': 2, 'their': 2, 'gender': 2, 'thing': 2, 'whole': 2, 'redo': 2, 'begin': 2, 'forgive': 2, 'start': 2, 'im': 2, 'exhuasted': 2, 'care': 2, 'long': 2, 'appreciate': 2, 'finish': 2, 'part': 2, 'address': 2, 'mindful': 1, 'gap': 1, 'look': 1, 'issues': 1, 'through': 1, 'simply': 1, 'hire': 1, 'explicitly': 1, 'companies': 1, 'even': 1, 'decisions': 1, 'priority': 1, 'implementing': 1, 'compound': 1, 'discrepancy': 1, 'further': 1, 'understand': 1, 'perspective': 1, 'agree': 1, 'want': 1, 'resentment': 1, 'workplace': 1, 'issue': 1, 'done': 1, 'looking': 1, 'true': 1, 'underrepresented': 1, 'careers': 1, 'believer': 1, 'something': 1, 'practices': 1}\n", + "{'i': 11, 'think': 5, 'please': 4, 'work': 4, 'rn': 4, 'ok': 4, 'women': 3, 'error': 2, 'hiring': 2, 'stem': 2, 'their': 2, 'gender': 2, 'thing': 2, 'whole': 2, 'redo': 2, 'begin': 2, 'forgive': 2, 'start': 2, 'im': 2, 'exhuasted': 2, 'care': 2, 'long': 2, 'appreciate': 2, 'finish': 2, 'part': 2, 'address': 2, 'mindful': 1, 'gap': 1, 'look': 1, 'issues': 1, 'through': 1, 'simply': 1, 'hire': 1, 'explicitly': 1, 'companies': 1, 'even': 1, 'decisions': 1, 'priority': 1, 'implementing': 1, 'compound': 1, 'discrepancy': 1, 'further': 1, 'understand': 1, 'perspective': 1, 'agree': 1, 'want': 1, 'resentment': 1, 'workplace': 1, 'issue': 1, 'done': 1, 'looking': 1, 'true': 1, 'underrepresented': 1, 'careers': 1, 'believer': 1, 'something': 1, 'practices': 1}\n", + "{'i': 11, 'think': 5, 'please': 4, 'work': 4, 'rn': 4, 'ok': 4, 'women': 3, 'error': 2, 'hiring': 2, 'stem': 2, 'their': 2, 'gender': 2, 'thing': 2, 'whole': 2, 'redo': 2, 'begin': 2, 'forgive': 2, 'start': 2, 'im': 2, 'exhuasted': 2, 'care': 2, 'long': 2, 'appreciate': 2, 'finish': 2, 'part': 2, 'address': 2, 'mindful': 1, 'gap': 1, 'look': 1, 'issues': 1, 'through': 1, 'simply': 1, 'hire': 1, 'explicitly': 1, 'companies': 1, 'even': 1, 'decisions': 1, 'priority': 1, 'implementing': 1, 'compound': 1, 'discrepancy': 1, 'further': 1, 'understand': 1, 'perspective': 1, 'agree': 1, 'want': 1, 'resentment': 1, 'workplace': 1, 'issue': 1, 'done': 1, 'looking': 1, 'true': 1, 'underrepresented': 1, 'careers': 1, 'believer': 1, 'something': 1, 'practices': 1}\n", + "{'i': 11, 'think': 5, 'please': 4, 'work': 4, 'rn': 4, 'ok': 4, 'women': 3, 'error': 2, 'hiring': 2, 'stem': 2, 'their': 2, 'gender': 2, 'thing': 2, 'whole': 2, 'redo': 2, 'begin': 2, 'forgive': 2, 'start': 2, 'im': 2, 'exhuasted': 2, 'care': 2, 'long': 2, 'appreciate': 2, 'finish': 2, 'part': 2, 'address': 2, 'mindful': 1, 'gap': 1, 'look': 1, 'issues': 1, 'through': 1, 'simply': 1, 'hire': 1, 'explicitly': 1, 'companies': 1, 'even': 1, 'decisions': 1, 'priority': 1, 'implementing': 1, 'compound': 1, 'discrepancy': 1, 'further': 1, 'understand': 1, 'perspective': 1, 'agree': 1, 'want': 1, 'resentment': 1, 'workplace': 1, 'issue': 1, 'done': 1, 'looking': 1, 'true': 1, 'underrepresented': 1, 'careers': 1, 'believer': 1, 'something': 1, 'practices': 1}\n", + "{'i': 11, 'think': 5, 'please': 4, 'work': 4, 'rn': 4, 'ok': 4, 'women': 3, 'error': 2, 'hiring': 2, 'stem': 2, 'their': 2, 'gender': 2, 'thing': 2, 'whole': 2, 'redo': 2, 'begin': 2, 'forgive': 2, 'start': 2, 'im': 2, 'exhuasted': 2, 'care': 2, 'long': 2, 'appreciate': 2, 'finish': 2, 'part': 2, 'address': 2, 'mindful': 1, 'gap': 1, 'look': 1, 'issues': 1, 'through': 1, 'simply': 1, 'hire': 1, 'explicitly': 1, 'companies': 1, 'even': 1, 'decisions': 1, 'priority': 1, 'implementing': 1, 'compound': 1, 'discrepancy': 1, 'further': 1, 'understand': 1, 'perspective': 1, 'agree': 1, 'want': 1, 'resentment': 1, 'workplace': 1, 'issue': 1, 'done': 1, 'looking': 1, 'true': 1, 'underrepresented': 1, 'careers': 1, 'believer': 1, 'something': 1, 'practices': 1}\n", + "{'i': 11, 'think': 5, 'please': 4, 'work': 4, 'rn': 4, 'ok': 4, 'women': 3, 'error': 2, 'hiring': 2, 'stem': 2, 'their': 2, 'gender': 2, 'thing': 2, 'whole': 2, 'redo': 2, 'begin': 2, 'forgive': 2, 'start': 2, 'im': 2, 'exhuasted': 2, 'care': 2, 'long': 2, 'appreciate': 2, 'finish': 2, 'part': 2, 'address': 2, 'mindful': 1, 'gap': 1, 'look': 1, 'issues': 1, 'through': 1, 'simply': 1, 'hire': 1, 'explicitly': 1, 'companies': 1, 'even': 1, 'decisions': 1, 'priority': 1, 'implementing': 1, 'compound': 1, 'discrepancy': 1, 'further': 1, 'understand': 1, 'perspective': 1, 'agree': 1, 'want': 1, 'resentment': 1, 'workplace': 1, 'issue': 1, 'done': 1, 'looking': 1, 'true': 1, 'underrepresented': 1, 'careers': 1, 'believer': 1, 'something': 1, 'practices': 1}\n", + "{'i': 11, 'think': 5, 'please': 4, 'work': 4, 'rn': 4, 'ok': 4, 'women': 3, 'error': 2, 'hiring': 2, 'stem': 2, 'their': 2, 'gender': 2, 'thing': 2, 'whole': 2, 'redo': 2, 'begin': 2, 'forgive': 2, 'start': 2, 'im': 2, 'exhuasted': 2, 'care': 2, 'long': 2, 'appreciate': 2, 'finish': 2, 'part': 2, 'address': 2, 'mindful': 1, 'gap': 1, 'look': 1, 'issues': 1, 'through': 1, 'simply': 1, 'hire': 1, 'explicitly': 1, 'companies': 1, 'even': 1, 'decisions': 1, 'priority': 1, 'implementing': 1, 'compound': 1, 'discrepancy': 1, 'further': 1, 'understand': 1, 'perspective': 1, 'agree': 1, 'want': 1, 'resentment': 1, 'workplace': 1, 'issue': 1, 'done': 1, 'looking': 1, 'true': 1, 'underrepresented': 1, 'careers': 1, 'believer': 1, 'something': 1, 'practices': 1}\n", + "{'i': 11, 'think': 5, 'please': 4, 'work': 4, 'rn': 4, 'ok': 4, 'women': 3, 'error': 2, 'hiring': 2, 'stem': 2, 'their': 2, 'gender': 2, 'thing': 2, 'whole': 2, 'redo': 2, 'begin': 2, 'forgive': 2, 'start': 2, 'im': 2, 'exhuasted': 2, 'care': 2, 'long': 2, 'appreciate': 2, 'finish': 2, 'part': 2, 'address': 2, 'mindful': 1, 'gap': 1, 'look': 1, 'issues': 1, 'through': 1, 'simply': 1, 'hire': 1, 'explicitly': 1, 'companies': 1, 'even': 1, 'decisions': 1, 'priority': 1, 'implementing': 1, 'compound': 1, 'discrepancy': 1, 'further': 1, 'understand': 1, 'perspective': 1, 'agree': 1, 'want': 1, 'resentment': 1, 'workplace': 1, 'issue': 1, 'done': 1, 'looking': 1, 'true': 1, 'underrepresented': 1, 'careers': 1, 'believer': 1, 'something': 1, 'practices': 1}\n", + "{'i': 11, 'think': 5, 'please': 4, 'work': 4, 'rn': 4, 'ok': 4, 'women': 3, 'error': 2, 'hiring': 2, 'stem': 2, 'their': 2, 'gender': 2, 'thing': 2, 'whole': 2, 'redo': 2, 'begin': 2, 'forgive': 2, 'start': 2, 'im': 2, 'exhuasted': 2, 'care': 2, 'long': 2, 'appreciate': 2, 'finish': 2, 'part': 2, 'address': 2, 'mindful': 1, 'gap': 1, 'look': 1, 'issues': 1, 'through': 1, 'simply': 1, 'hire': 1, 'explicitly': 1, 'companies': 1, 'even': 1, 'decisions': 1, 'priority': 1, 'implementing': 1, 'compound': 1, 'discrepancy': 1, 'further': 1, 'understand': 1, 'perspective': 1, 'agree': 1, 'want': 1, 'resentment': 1, 'workplace': 1, 'issue': 1, 'done': 1, 'looking': 1, 'true': 1, 'underrepresented': 1, 'careers': 1, 'believer': 1, 'something': 1, 'practices': 1}\n", + "{'i': 11, 'think': 5, 'please': 4, 'work': 4, 'rn': 4, 'ok': 4, 'women': 3, 'error': 2, 'hiring': 2, 'stem': 2, 'their': 2, 'gender': 2, 'thing': 2, 'whole': 2, 'redo': 2, 'begin': 2, 'forgive': 2, 'start': 2, 'im': 2, 'exhuasted': 2, 'care': 2, 'long': 2, 'appreciate': 2, 'finish': 2, 'part': 2, 'address': 2, 'mindful': 1, 'gap': 1, 'look': 1, 'issues': 1, 'through': 1, 'simply': 1, 'hire': 1, 'explicitly': 1, 'companies': 1, 'even': 1, 'decisions': 1, 'priority': 1, 'implementing': 1, 'compound': 1, 'discrepancy': 1, 'further': 1, 'understand': 1, 'perspective': 1, 'agree': 1, 'want': 1, 'resentment': 1, 'workplace': 1, 'issue': 1, 'done': 1, 'looking': 1, 'true': 1, 'underrepresented': 1, 'careers': 1, 'believer': 1, 'something': 1, 'practices': 1}\n", + "{'i': 11, 'think': 5, 'please': 4, 'work': 4, 'rn': 4, 'ok': 4, 'women': 3, 'error': 2, 'hiring': 2, 'stem': 2, 'their': 2, 'gender': 2, 'thing': 2, 'whole': 2, 'redo': 2, 'begin': 2, 'forgive': 2, 'start': 2, 'im': 2, 'exhuasted': 2, 'care': 2, 'long': 2, 'appreciate': 2, 'finish': 2, 'part': 2, 'address': 2, 'mindful': 1, 'gap': 1, 'look': 1, 'issues': 1, 'through': 1, 'simply': 1, 'hire': 1, 'explicitly': 1, 'companies': 1, 'even': 1, 'decisions': 1, 'priority': 1, 'implementing': 1, 'compound': 1, 'discrepancy': 1, 'further': 1, 'understand': 1, 'perspective': 1, 'agree': 1, 'want': 1, 'resentment': 1, 'workplace': 1, 'issue': 1, 'done': 1, 'looking': 1, 'true': 1, 'underrepresented': 1, 'careers': 1, 'believer': 1, 'something': 1, 'practices': 1}\n", + "{'i': 11, 'think': 5, 'please': 4, 'work': 4, 'rn': 4, 'ok': 4, 'women': 3, 'error': 2, 'hiring': 2, 'stem': 2, 'their': 2, 'gender': 2, 'thing': 2, 'whole': 2, 'redo': 2, 'begin': 2, 'forgive': 2, 'start': 2, 'im': 2, 'exhuasted': 2, 'care': 2, 'long': 2, 'appreciate': 2, 'finish': 2, 'part': 2, 'address': 2, 'mindful': 1, 'gap': 1, 'look': 1, 'issues': 1, 'through': 1, 'simply': 1, 'hire': 1, 'explicitly': 1, 'companies': 1, 'even': 1, 'decisions': 1, 'priority': 1, 'implementing': 1, 'compound': 1, 'discrepancy': 1, 'further': 1, 'understand': 1, 'perspective': 1, 'agree': 1, 'want': 1, 'resentment': 1, 'workplace': 1, 'issue': 1, 'done': 1, 'looking': 1, 'true': 1, 'underrepresented': 1, 'careers': 1, 'believer': 1, 'something': 1, 'practices': 1}\n", + "{'i': 11, 'think': 5, 'please': 4, 'work': 4, 'rn': 4, 'ok': 4, 'women': 3, 'error': 2, 'hiring': 2, 'stem': 2, 'their': 2, 'gender': 2, 'thing': 2, 'whole': 2, 'redo': 2, 'begin': 2, 'forgive': 2, 'start': 2, 'im': 2, 'exhuasted': 2, 'care': 2, 'long': 2, 'appreciate': 2, 'finish': 2, 'part': 2, 'address': 2, 'mindful': 1, 'gap': 1, 'look': 1, 'issues': 1, 'through': 1, 'simply': 1, 'hire': 1, 'explicitly': 1, 'companies': 1, 'even': 1, 'decisions': 1, 'priority': 1, 'implementing': 1, 'compound': 1, 'discrepancy': 1, 'further': 1, 'understand': 1, 'perspective': 1, 'agree': 1, 'want': 1, 'resentment': 1, 'workplace': 1, 'issue': 1, 'done': 1, 'looking': 1, 'true': 1, 'underrepresented': 1, 'careers': 1, 'believer': 1, 'something': 1, 'practices': 1}\n", + "{'i': 11, 'think': 5, 'please': 4, 'work': 4, 'rn': 4, 'ok': 4, 'women': 3, 'error': 2, 'hiring': 2, 'stem': 2, 'their': 2, 'gender': 2, 'thing': 2, 'whole': 2, 'redo': 2, 'begin': 2, 'forgive': 2, 'start': 2, 'im': 2, 'exhuasted': 2, 'care': 2, 'long': 2, 'appreciate': 2, 'finish': 2, 'part': 2, 'address': 2, 'mindful': 1, 'gap': 1, 'look': 1, 'issues': 1, 'through': 1, 'simply': 1, 'hire': 1, 'explicitly': 1, 'companies': 1, 'even': 1, 'decisions': 1, 'priority': 1, 'implementing': 1, 'compound': 1, 'discrepancy': 1, 'further': 1, 'understand': 1, 'perspective': 1, 'agree': 1, 'want': 1, 'resentment': 1, 'workplace': 1, 'issue': 1, 'done': 1, 'looking': 1, 'true': 1, 'underrepresented': 1, 'careers': 1, 'believer': 1, 'something': 1, 'practices': 1}\n", + "{'i': 11, 'think': 5, 'please': 4, 'work': 4, 'rn': 4, 'ok': 4, 'women': 3, 'error': 2, 'hiring': 2, 'stem': 2, 'their': 2, 'gender': 2, 'thing': 2, 'whole': 2, 'redo': 2, 'begin': 2, 'forgive': 2, 'start': 2, 'im': 2, 'exhuasted': 2, 'care': 2, 'long': 2, 'appreciate': 2, 'finish': 2, 'part': 2, 'address': 2, 'mindful': 1, 'gap': 1, 'look': 1, 'issues': 1, 'through': 1, 'simply': 1, 'hire': 1, 'explicitly': 1, 'companies': 1, 'even': 1, 'decisions': 1, 'priority': 1, 'implementing': 1, 'compound': 1, 'discrepancy': 1, 'further': 1, 'understand': 1, 'perspective': 1, 'agree': 1, 'want': 1, 'resentment': 1, 'workplace': 1, 'issue': 1, 'done': 1, 'looking': 1, 'true': 1, 'underrepresented': 1, 'careers': 1, 'believer': 1, 'something': 1, 'practices': 1}\n", + "{'i': 11, 'think': 5, 'please': 4, 'work': 4, 'rn': 4, 'ok': 4, 'women': 3, 'error': 2, 'hiring': 2, 'stem': 2, 'their': 2, 'gender': 2, 'thing': 2, 'whole': 2, 'redo': 2, 'begin': 2, 'forgive': 2, 'start': 2, 'im': 2, 'exhuasted': 2, 'care': 2, 'long': 2, 'appreciate': 2, 'finish': 2, 'part': 2, 'address': 2, 'mindful': 1, 'gap': 1, 'look': 1, 'issues': 1, 'through': 1, 'simply': 1, 'hire': 1, 'explicitly': 1, 'companies': 1, 'even': 1, 'decisions': 1, 'priority': 1, 'implementing': 1, 'compound': 1, 'discrepancy': 1, 'further': 1, 'understand': 1, 'perspective': 1, 'agree': 1, 'want': 1, 'resentment': 1, 'workplace': 1, 'issue': 1, 'done': 1, 'looking': 1, 'true': 1, 'underrepresented': 1, 'careers': 1, 'believer': 1, 'something': 1, 'practices': 1}\n", + "{'i': 11, 'think': 5, 'please': 4, 'work': 4, 'rn': 4, 'ok': 4, 'women': 3, 'error': 2, 'hiring': 2, 'stem': 2, 'their': 2, 'gender': 2, 'thing': 2, 'whole': 2, 'redo': 2, 'begin': 2, 'forgive': 2, 'start': 2, 'im': 2, 'exhuasted': 2, 'care': 2, 'long': 2, 'appreciate': 2, 'finish': 2, 'part': 2, 'address': 2, 'mindful': 1, 'gap': 1, 'look': 1, 'issues': 1, 'through': 1, 'simply': 1, 'hire': 1, 'explicitly': 1, 'companies': 1, 'even': 1, 'decisions': 1, 'priority': 1, 'implementing': 1, 'compound': 1, 'discrepancy': 1, 'further': 1, 'understand': 1, 'perspective': 1, 'agree': 1, 'want': 1, 'resentment': 1, 'workplace': 1, 'issue': 1, 'done': 1, 'looking': 1, 'true': 1, 'underrepresented': 1, 'careers': 1, 'believer': 1, 'something': 1, 'practices': 1}\n", + "{'i': 5, 'women': 3, 'think': 3, 'hiring': 2, 'stem': 2, 'their': 2, 'gender': 2, 'address': 2, 'mindful': 1, 'gap': 1, 'even': 1, 'hire': 1, 'look': 1, 'explicitly': 1, 'companies': 1, 'issues': 1, 'decisions': 1, 'through': 1, 'priority': 1, 'implementing': 1, 'simply': 1, 'done': 1, 'discrepancy': 1, 'compound': 1, 'perspective': 1, 'agree': 1, 'want': 1, 'resentment': 1, 'workplace': 1, 'further': 1, 'issue': 1, 'understand': 1, 'looking': 1, 'true': 1, 'underrepresented': 1, 'careers': 1, 'believer': 1, 'something': 1, 'practices': 1}\n", + "{'i': 5, 'women': 3, 'think': 3, 'hiring': 2, 'stem': 2, 'their': 2, 'gender': 2, 'address': 2, 'mindful': 1, 'gap': 1, 'even': 1, 'hire': 1, 'look': 1, 'explicitly': 1, 'companies': 1, 'issues': 1, 'decisions': 1, 'through': 1, 'priority': 1, 'implementing': 1, 'simply': 1, 'done': 1, 'discrepancy': 1, 'compound': 1, 'perspective': 1, 'agree': 1, 'want': 1, 'resentment': 1, 'workplace': 1, 'further': 1, 'issue': 1, 'understand': 1, 'looking': 1, 'true': 1, 'underrepresented': 1, 'careers': 1, 'believer': 1, 'something': 1, 'practices': 1}\n", + "{'i': 5, 'women': 3, 'think': 3, 'hiring': 2, 'stem': 2, 'their': 2, 'gender': 2, 'address': 2, 'mindful': 1, 'gap': 1, 'even': 1, 'hire': 1, 'look': 1, 'explicitly': 1, 'companies': 1, 'issues': 1, 'decisions': 1, 'through': 1, 'priority': 1, 'implementing': 1, 'simply': 1, 'done': 1, 'discrepancy': 1, 'compound': 1, 'perspective': 1, 'agree': 1, 'want': 1, 'resentment': 1, 'workplace': 1, 'further': 1, 'issue': 1, 'understand': 1, 'looking': 1, 'true': 1, 'underrepresented': 1, 'careers': 1, 'believer': 1, 'something': 1, 'practices': 1}\n", + "{'i': 5, 'women': 3, 'think': 3, 'hiring': 2, 'stem': 2, 'their': 2, 'gender': 2, 'address': 2, 'mindful': 1, 'gap': 1, 'even': 1, 'hire': 1, 'look': 1, 'explicitly': 1, 'companies': 1, 'issues': 1, 'decisions': 1, 'through': 1, 'priority': 1, 'implementing': 1, 'simply': 1, 'done': 1, 'discrepancy': 1, 'compound': 1, 'perspective': 1, 'agree': 1, 'want': 1, 'resentment': 1, 'workplace': 1, 'further': 1, 'issue': 1, 'understand': 1, 'looking': 1, 'true': 1, 'underrepresented': 1, 'careers': 1, 'believer': 1, 'something': 1, 'practices': 1}\n", + "{'i': 5, 'women': 3, 'think': 3, 'hiring': 2, 'stem': 2, 'their': 2, 'gender': 2, 'address': 2, 'mindful': 1, 'gap': 1, 'even': 1, 'hire': 1, 'look': 1, 'explicitly': 1, 'companies': 1, 'issues': 1, 'decisions': 1, 'through': 1, 'priority': 1, 'implementing': 1, 'simply': 1, 'done': 1, 'discrepancy': 1, 'compound': 1, 'perspective': 1, 'agree': 1, 'want': 1, 'resentment': 1, 'workplace': 1, 'further': 1, 'issue': 1, 'understand': 1, 'looking': 1, 'true': 1, 'underrepresented': 1, 'careers': 1, 'believer': 1, 'something': 1, 'practices': 1}\n", + "{'i': 5, 'women': 3, 'think': 3, 'hiring': 2, 'stem': 2, 'their': 2, 'gender': 2, 'address': 2, 'mindful': 1, 'gap': 1, 'even': 1, 'hire': 1, 'look': 1, 'explicitly': 1, 'companies': 1, 'issues': 1, 'decisions': 1, 'through': 1, 'priority': 1, 'implementing': 1, 'simply': 1, 'done': 1, 'discrepancy': 1, 'compound': 1, 'perspective': 1, 'agree': 1, 'want': 1, 'resentment': 1, 'workplace': 1, 'further': 1, 'issue': 1, 'understand': 1, 'looking': 1, 'true': 1, 'underrepresented': 1, 'careers': 1, 'believer': 1, 'something': 1, 'practices': 1}\n", + "{'i': 5, 'women': 3, 'think': 3, 'hiring': 2, 'stem': 2, 'their': 2, 'gender': 2, 'address': 2, 'mindful': 1, 'gap': 1, 'even': 1, 'hire': 1, 'look': 1, 'explicitly': 1, 'companies': 1, 'issues': 1, 'decisions': 1, 'through': 1, 'priority': 1, 'implementing': 1, 'simply': 1, 'done': 1, 'discrepancy': 1, 'compound': 1, 'perspective': 1, 'agree': 1, 'want': 1, 'resentment': 1, 'workplace': 1, 'further': 1, 'issue': 1, 'understand': 1, 'looking': 1, 'true': 1, 'underrepresented': 1, 'careers': 1, 'believer': 1, 'something': 1, 'practices': 1}\n", + "{'i': 5, 'women': 3, 'think': 3, 'hiring': 2, 'stem': 2, 'their': 2, 'gender': 2, 'address': 2, 'mindful': 1, 'gap': 1, 'even': 1, 'hire': 1, 'look': 1, 'explicitly': 1, 'companies': 1, 'issues': 1, 'decisions': 1, 'through': 1, 'priority': 1, 'implementing': 1, 'simply': 1, 'done': 1, 'discrepancy': 1, 'compound': 1, 'perspective': 1, 'agree': 1, 'want': 1, 'resentment': 1, 'workplace': 1, 'further': 1, 'issue': 1, 'understand': 1, 'looking': 1, 'true': 1, 'underrepresented': 1, 'careers': 1, 'believer': 1, 'something': 1, 'practices': 1}\n", + "{'i': 5, 'women': 3, 'think': 3, 'hiring': 2, 'stem': 2, 'their': 2, 'gender': 2, 'address': 2, 'mindful': 1, 'gap': 1, 'even': 1, 'hire': 1, 'look': 1, 'explicitly': 1, 'companies': 1, 'issues': 1, 'decisions': 1, 'through': 1, 'priority': 1, 'implementing': 1, 'simply': 1, 'done': 1, 'discrepancy': 1, 'compound': 1, 'perspective': 1, 'agree': 1, 'want': 1, 'resentment': 1, 'workplace': 1, 'further': 1, 'issue': 1, 'understand': 1, 'looking': 1, 'true': 1, 'underrepresented': 1, 'careers': 1, 'believer': 1, 'something': 1, 'practices': 1}\n", + "{'land': 5, 'please': 2, 'i': 1, 'always': 1, 'love': 1, 'help': 1, 'made': 1}\n", + "{'land': 5, 'please': 2, 'i': 1, 'always': 1, 'love': 1, 'help': 1, 'made': 1}\n", + "{'land': 5, 'please': 2, 'i': 1, 'always': 1, 'love': 1, 'help': 1, 'made': 1}\n", + "{'land': 5, 'please': 2, 'i': 1, 'always': 1, 'love': 1, 'help': 1, 'made': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'i': 12, 'mustnt': 10, 'lets': 9, 'ive': 8, 'alot': 7, 'around': 6, 'yall': 6, 'id': 5, 'come': 5, 'fucks': 5, 'mates': 5, 'know': 5, 'hell': 5, 'thine': 5, 'except': 4, 'sons': 4, 'ourselves': 4, 'sang': 4, 'ill': 4, 'oughtnt': 4, 'u': 4, 'think': 4, 'here': 4, 'probably': 4, 'how': 4, 'sometime': 3, 'butt': 3, 'came': 3, 'insides': 3, 'best': 3, 'masters': 3, 'dick': 3, 'believe': 3, 'either': 3, 'cried': 3, 'hows': 3, 'sucked': 3, 'ate': 3, 'sort': 3, 'wholl': 3, 'mustve': 3, 'neednt': 3, 'demise': 2, 'stuns': 2, 'shook': 2, 'warring': 2, 'lost': 2, 'seemed': 2, 'doesnt': 2, 'went': 2, 'described': 2, 'ran': 2, 'nearsighted': 2, 'yes': 2, 'hers': 2, 'sob': 2, 'gay': 2, 'whining': 2, 'brings': 2, 'begin': 2, 'titty': 2, 'miss': 2, 'whod': 2, 'feared': 2, 'shant': 2, 'grief': 2, 'wonders': 2, 'living': 2, 'tried': 2, 'ladies': 2, 'seen': 2, 'man': 2, 'believes': 2, 'waited': 2, 'maam': 2, 'infer': 2, 'depends': 2, 'affected': 2, 'citizen': 2, 'makes': 2, 'ton': 2, 'section': 2, 'else': 2, 'salvation': 2, 'mostly': 2, 'describe': 2, 'feels': 2, 'rub': 2, 'moms': 2, 'skin': 2, 'gonna': 2, 'wondered': 2, 'depend': 2, 'shall': 2, 'must': 2, 'lucks': 2, 'held': 2, 'condom': 2, 'look': 2, 'option': 2, 'now': 2, 'sees': 2, 'thee': 2, 'ye': 2, 'oughta': 2, 'listens': 2, 'both': 2, 'hearing': 2, 'possibly': 2, 'noisy': 2, 'noises': 2, 'essential': 2, 'hand': 2, 'ear': 2, 'whether': 2, 'palms': 2, 'plus': 2, 'defined': 2, 'though': 2, 'completes': 2, 'drily': 2, 'hears': 2, 'along': 2, 'little': 2, 'add': 2, 'condo': 2, 'hopes': 2, 'first': 2, 'altogether': 2, 'generally': 2, 'apparently': 2, 'appearing': 2, 'need': 2, 'instead': 2, 'rather': 2, 'immediately': 2, 'bones': 1, 'longingjhbn': 1, 'lamefpbv': 1, 'invariabr': 1, 'disadvantagenxtql': 1, 'sightsue': 1, 'undoubtgyzl': 1, 'insincermy': 1, 'exactofn': 1, 'remorseoeia': 1, 'difficultna': 1, 'exactnqhfl': 1, 'jaded': 1, 'wars': 1, 'vanity': 1, 'columnxvs': 1, 'marriexrzvf': 1, 'familiesc': 1, 'cousinbzmwh': 1, 'breathdcafq': 1, 'brainz': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'rashnut': 1, 'nervew': 1, 'brotherrhda': 1, 'belly': 1, 'bone': 1, 'whitishk': 1, 'inevitabx': 1, 'unquestionqzj': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'determined': 1, 'tons': 1, 'difficultnmril': 1, 'interestuthxn': 1, 'sunny': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'reasonpulei': 1, 'alrightdo': 1, 'meaningidwf': 1, 'seem': 1, 'cleanhwe': 1, 'questiontmyhc': 1, 'porch': 1, 'reorganitkgar': 1, 'sense': 1, 'roomiepuma': 1, 'explaining': 1, 'helperhnx': 1, 'whole': 1, 'precisjawd': 1, 'nor': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'vulnerabc': 1, 'undoubts': 1, 'shitzv': 1, 'greater': 1, 'simple': 1, 'patioquf': 1, 'differenceb': 1, 'extent': 1, 'mucho': 1, 'much': 1, 'lotsa': 1, 'bedroomox': 1, 'extremely': 1, 'maidqyldk': 1, 'piecg': 1, 'page': 1, 'looked': 1, 'eying': 1, 'seer': 1, 'cock': 1, 'lose': 1, 'ranking': 1, 'uncertainu': 1, 'shakiihxd': 1, 'frightixu': 1, 'stunned': 1, 'misersjne': 1, 'alarmkzu': 1, 'concludwo': 1, 'tremblwzocs': 1, 'resourcefulcamzd': 1, 'importanmqdw': 1, 'nope': 1, 'negatlpji': 1, 'dang': 1, 'pussyah': 1, 'unproducet': 1, 'veggiecla': 1, 'dumbpbzvd': 1, 'penisygbjp': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'strongm': 1, 'franticivctu': 1, 'confusmb': 1, 'irresponsiblet': 1, 'primarily': 1, 'defeatxjq': 1, 'back': 1, 'perhaps': 1, 'somehow': 1, 'yet': 1, 'eventually': 1, 'endeavafre': 1, 'abilitbdz': 1, 'confident': 1, 'masterfulvq': 1, 'uncertainve': 1, 'triumphujryl': 1, 'soon': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'effortcxbe': 1, 'loserxc': 1, 'overwhelmryjd': 1, 'strainf': 1, 'shakewm': 1, 'shitq': 1, 'pisslkx': 1, 'triangdg': 1, 'queersgm': 1, 'anorexiky': 1, 'tinglliqf': 1, 'faintdlseh': 1, 'throbpqym': 1, 'woundzlkw': 1, 'gynobqovn': 1, 'therapdkzr': 1, 'healed': 1, 'ocd': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'sunshingwv': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'whenever': 1, 'eyeqblh': 1, 'fattsc': 1, 'inside': 1, 'rectangypwos': 1, 'open': 1, 'throbj': 1, 'physicianuqvwr': 1, 'syndromeagxe': 1, 'gravevwhfi': 1, 'appreciate': 1, 'pussyeqru': 1, 'healing': 1, 'skinnijsv': 1, 'mofo': 1, 'prickyj': 1, 'musclephj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'tombetp': 1, 'chokkohz': 1, 'drownksti': 1, 'lynchxafto': 1, 'war': 1, 'digestp': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'rationallpfg': 1, 'unneccessagf': 1, 'girlshfsio': 1, 'skinmen': 1, 'press': 1, 'hot': 1, 'thin': 1, 'silkvr': 1, 'skinh': 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'weight': 1, 'thinnajy': 1, 'bfbfi': 1, 'feelingwkaf': 1, 'thereforrnsq': 1, 'origins': 1, 'motivnt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'pissmygt': 1, 'rebelmp': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'buddiesef': 1, 'aint': 1, 'adults': 1, 'valiantly': 1, 'imaculate': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'selfsufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'illustrious': 1, 'faithfully': 1, 'avertv': 1, 'evocative': 1, 'yearnqgjth': 1, 'tentativwc': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, 'greyiyck': 1, 'delectabliktz': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'taxansjbf': 1, 'auditing': 1, 'bet': 1, 'erectile': 1, 'neighboregax': 1, 'fuckinc': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'pornfzqh': 1, 'approachjuzeb': 1, 'incomegfl': 1, 'fit': 1, 'child': 1, 'menbldt': 1, 'self': 1, 'femalejlcvo': 1, 'babeae': 1, 'goes': 1, 'start': 1, 'describes': 1, 'dislikes': 1, 'knows': 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'spent': 1, 'forgote': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'sadness': 1, 'christianwq': 1, 'muhammyprqh': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'transfergdnu': 1, 'grad': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'jesuitgsabe': 1, 'rosary': 1, 'sect': 1, 'band': 1, 'cry': 1, 'disheartengzeaq': 1, 'sadly': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'guyawg': 1, 'rosaries': 1, 'kid': 1, 'help': 1, 'excusk': 1, 'peoplelnm': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, 'karma': 1, 'orthodoxfdy': 1, 'doghouseeastb': 1, 'randomuer': 1, 'residencpbs': 1, 'eyewut': 1, 'nephewz': 1, 'wifevxmlj': 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'bro': 1, 'breastqyp': 1, 'fullmzf': 1, 'wake': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'facialrqth': 1, 'foot': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'rest': 1, 'glad': 1, 'icu': 1, 'secret': 1, 'infers': 1, 'newbornl': 1, 'citizenphtgi': 1, 'girls': 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, 'listened': 1, 'loved': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'suspectc': 1, 'sensing': 1, 'great': 1, 'motivsc': 1, 'charmbrwsd': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'huggpo': 1, 'grin': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'orangemacis': 1, 'scabo': 1, 'gianthy': 1, 'altho': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'brunchkjz': 1, 'saliverbwp': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'however': 1, 'furniture': 1, 'quitti': 1, 'bedroomxhpl': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'rang': 1, 'concertfuw': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'finalizuav': 1, 'capabfs': 1, 'burpzxevw': 1, 'pisstkzme': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'embalmfqydb': 1, 'hearsepdk': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'plans': 1, 'cuntq': 1, 'strengthe': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'overwhelmfvlxi': 1, 'timidfzbh': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'growing': 1, 'age': 1, 'lawnjr': 1, 'versus': 1, 'wished': 1, 'thank': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'let': 1, 'exclusxklz': 1, 'somethingfxdq': 1, 'wasnt': 1, 'exclujvy': 1, 'hardevtqef': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'most': 1, 'vary': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'ought': 1, 'oughtve': 1, 'hard': 1, 'souriau': 1, 'hope': 1, 'mistakwzl': 1, 'hoping': 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'hushmqplh': 1, 'speak': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'tang': 1, 'speaking': 1, 'becomes': 1, 'redness': 1, 'done': 1, 'meaningi': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'shoulds': 1, 'containn': 1, 'deducczr': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'requirj': 1, 'repressydvml': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'warmlvye': 1, 'im': 1, 'initiatoxtwa': 1, 'yearnlkw': 1, 'pitiulpnv': 1, 'regretzkbrc': 1, 'missed': 1, 'unhappj': 1, 'listenerqe': 1, 'girlfriendwsnya': 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somebodp': 1, 'somewhere': 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, 'quranpy': 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'tragickh': 1, 'unimportant': 1, 'catholickd': 1, 'devastatu': 1, 'follow': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'boundlby': 1, 'deniaxi': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'ministerlnfts': 1, 'sikhc': 1, 'molestgv': 1, 'mortgpzvi': 1, 'bucks': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'threatxre': 1, 'offencefhcog': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'overtime': 1, 'spending': 1, 'judaprfd': 1, 'store': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'classes': 1, 'owes': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'abcdef': 1}\n", + "{'hello': 2}\n", + "{'hello': 2}\n", + "{'hello': 2}\n", + "{'hello': 2}\n", + "{'hello': 2}\n", + "{'hello': 3, 'yoyo': 2}\n", + "{'hello': 3, 'yoyo': 2}\n", + "{'hello': 3, 'yoyo': 2}\n", + "{'hello': 3, 'yoyo': 2}\n", + "[[0, 0], [0, 0], [0], [0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5, 0.3333333333333333, 0.6666666666666666, 0.3333333333333333, 0.0, 0.0, 0.0, 0.0, 1.5, 0.0, 0.09090909090909091, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3333333333333333, 0.0], [0.0, 0.034482758620689655, 0.034482758620689655, 0.034482758620689655, 0.034482758620689655, 0.034482758620689655, 0.034482758620689655, 0.06896551724137931, 0.034482758620689655, 0.034482758620689655, 0.25, 0.0, 0.06896551724137931, 0.034482758620689655, 0.10344827586206896, 0.0, 0.06666666666666667, 0.034482758620689655, 0.06896551724137931, 0.7773399014778324, 0.7773399014778324, 0.9440065681444991, 0.75, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.5], [0.0, 0.0, 0.0, 0.5], [0.0, 0.5], [0.0, 0.0, 0.0, 0.5], [0, 0, 0, 0], [0, 0, 0, 0, 0], [0.0, 0.0, 0.0, 0.14285714285714285, 0.0], [0, 0, 0, 0], [0.0, 0.0, 0.0, 0.0, 0.25, 0.0, 0.0, 0.0, 0.09090909090909091, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0], [0], [0], [0], [0], [0], [0], [0], [0], [0.0, 0.0, 0.5, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3666666666666667, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.2, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.25, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3333333333333333, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.375, 0.0, 0.0, 0.25, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.14285714285714285, 0.14285714285714285, 0.0, 0.0, 0.0, 0.08333333333333333, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2222222222222222, 0.1111111111111111, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.25, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.25, 0.25, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3333333333333333, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.08333333333333333, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3333333333333333, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.25, 0.16666666666666666, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.4166666666666665, 0.5833333333333333, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.5, 0.0, 0.0], [0.0, 0.0, 0.3333333333333333, 0.8333333333333333]]\n" + ] + }, + { + "data": { + "text/html": [ + "
                                        \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
                                        conversation_nummessagefunction_word_accommodationcontent_word_accommodation
                                        01hello i like fish00.000000
                                        11this sentence has five words00.000000
                                        22hello00.000000
                                        32is 4 a word00.000000
                                        43NaN00.000000
                                        ...............
                                        675Aget10.000000
                                        676Bable am are00.000000
                                        677Bable am are hello30.000000
                                        678Bable am hello yoyo20.333333
                                        679Bhello yoyo00.833333
                                        \n", + "

                                        680 rows × 4 columns

                                        \n", + "
                                        " + ], + "text/plain": [ + " conversation_num message \\\n", + "0 1 hello i like fish \n", + "1 1 this sentence has five words \n", + "2 2 hello \n", + "3 2 is 4 a word \n", + "4 3 NaN \n", + ".. ... ... \n", + "675 A get \n", + "676 B able am are \n", + "677 B able am are hello \n", + "678 B able am hello yoyo \n", + "679 B hello yoyo \n", + "\n", + " function_word_accommodation content_word_accommodation \n", + "0 0 0.000000 \n", + "1 0 0.000000 \n", + "2 0 0.000000 \n", + "3 0 0.000000 \n", + "4 0 0.000000 \n", + ".. ... ... \n", + "675 1 0.000000 \n", + "676 0 0.000000 \n", + "677 3 0.000000 \n", + "678 2 0.333333 \n", + "679 0 0.833333 \n", + "\n", + "[680 rows x 4 columns]" + ] + }, + "execution_count": 2, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "import pandas as pd\n", + "from word_mimicry import *\n", + "\n", + "test_chat_df = pd.read_csv(\"./output/chat/test_chat_level_chat.csv\")\n", + "df = test_chat_df[['conversation_num', \"message\"]].reset_index(drop=True)\n", + "df\n", + "# df[-4:]\n", + "\n", + "df[\"function_words\"] = df[\"message\"].apply(\n", + " lambda x: get_function_words_in_message(x, function_word_reference=func))\n", + "df[\"content_words\"] = df[\"message\"].apply(\n", + " lambda x: get_content_words_in_message(x, function_word_reference=func))\n", + "\n", + "# Extract the function words / content words that also appears in the immediate previous turn\n", + "df[\"function_word_mimicry\"] = mimic_words(\n", + " df, \"function_words\", \"conversation_num\")\n", + "df[\"content_word_mimicry\"] = mimic_words(\n", + " df, \"content_words\", \"conversation_num\")\n", + "\n", + "# Compute the number of function words that also appears in the immediate previous turn\n", + "df[\"function_word_accommodation\"] = df[\"function_word_mimicry\"].apply(\n", + " function_mimicry_score)\n", + "\n", + "# Compute the sum of inverse frequency of each content word that also occurred in the other’s immediately prior turn.\n", + "df[\"content_word_accommodation\"] = Content_mimicry_score(\n", + " df, \"content_words\", \"content_word_mimicry\")\n", + "\n", + "# Drop the function / content word columns -- we don't need them in the output\n", + "df = df.drop(columns=['function_words', 'content_words', 'function_word_mimicry', 'content_word_mimicry'])\n", + "df\n" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "0 0.0\n", + "1 0.0\n", + "2 0.0\n", + "3 0.0\n", + "4 0.0\n", + " ... \n", + "675 0.0\n", + "676 0.0\n", + "677 0.0\n", + "678 0.1\n", + "679 0.6\n", + "Name: content_word_accommodation, Length: 680, dtype: float64" + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "test_chat_df = pd.read_csv(\"./output/chat/test_chat_level_chat.csv\")\n", + "test_chat_df['content_word_accommodation']" + ] + }, + { + "cell_type": "code", + "execution_count": 79, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " conversation_num message\n", + "0 1 Hello I like fish.\n", + "1 1 This sentence has five words.\n", + "{'Hello': 1, 'fish.': 1, 'This': 1, 'sentence': 1, 'has': 1, 'five': 1, 'words.': 1}\n", + "0 0\n", + "1 0\n", + "Name: content_word_accommodation, dtype: int64\n", + " conversation_num message\n", + "2 2 Hello??\n", + "3 2 Is 4 a word?\n", + "{'Hello??': 1, 'Is': 1, '4': 1, 'word?': 1}\n", + "0 0\n", + "1 0\n", + "Name: content_word_accommodation, dtype: int64\n", + " conversation_num message\n", + "4 3 .\n", + "{'.': 1}\n", + "0 0\n", + "Name: content_word_accommodation, dtype: int64\n", + " conversation_num message\n", + "5 4 HELLO WORLD, THIS IS A TEST. hi HI. hi HI hi HI\"\n", + "6 4 ONE TWO THREE. four five six. sEvEn EiGhT nInE.\n", + "7 4 Check out this [link](https://example.com) and...\n", + "8 4 I like google.com and wikipedia.org but not am...\n", + "9 4 why don't you read everything at https://www.e...\n", + "10 4 why don't you read everything at \\r\\n- https:/...\n", + "11 4 Hello u/user1 and u/user2, hi hi hi?\n", + "12 4 I don't like u/user_1_test but I like u/user2Test\n", + "13 4 This is **bold**, *italics*, and this is not. ...\n", + "14 4 This is **uneven* in terms of *the emphasis**\n", + "15 4 * item 1\\n* item 2\\n- item 3\n", + "16 4 Here are all my arguments:\\r\\n- point 1\\r\\n- p...\n", + "17 4 1. First\\n2. Second\\n3. Third\n", + "18 4 This is the first line.\\nThis is the second li...\n", + "19 4 I have a line\\r\\n\\r\\n\\r\\n\\r\\n\\r\\nhere is a new...\n", + "20 4 this is a line with\\rA different kind of retur...\n", + "21 4 \"This is a quote.\" She said, \"Here's another.\"\n", + "22 4 \"You miss 100% of the shots you don't take\" --...\n", + "23 4 \"I can't believe you use single quotes to quot...\n", + "24 4 > Quoting someone else\\nThis is my reply.\n", + "25 4 > Quoting someone else\\nThis is my reply.\n", + "26 4 >>>> This is a quote but I went overboard with...\n", + "27 4 >> This is one where I put too many of t...\n", + "28 4 > Hello!\\r\\nGoodbye!\n", + "29 4 > here I am making a quote\\r\\nI respond to it\\...\n", + "30 4 Well... I'm not sure... Maybe...\n", + "31 4 hm..what if I only use two periods...............\n", + "32 4 This is a sentence (with some text in parenthe...\n", + "33 4 \"Sure,\" I said confidently (thiking to myself:...\n", + "34 4 (((((these parentheses are not properly closed.)\n", + "35 4 ((there are multiple parentheses here))\n", + "36 4 ((1+(1+3+4)^2)+7+(9+8))\n", + "{'point': 14, 'multiple': 12, 'long': 11, 'lines': 11, 'takes': 11, 'super': 11, '4': 11, '-': 9, 'This': 8, 'quote': 4, \"don't\": 4, 'line': 4, '>': 4, 'item': 3, 'quotes': 3, 'here': 3, 'line.\\\\nThis': 2, 'https://www.example.co.uk': 2, 'third': 2, 'reply.': 2, 'Quoting': 2, 'respond': 2, 'else\\\\nThis': 2, 'https://www.example.org': 2, 'many': 2, '3': 2, 'https://www.example.ca': 2, 'https://www.example.net': 2, 'read': 2, 'use': 2, 'single': 2, 'parentheses': 2, 'return': 2, 'https://www.example.com': 2, 'character': 2, '>>>>': 1, \"'sometimes\": 1, '>': 1, \"can't\": 1, 'believe': 1, 'people,\"': 1, 'said.': 1, '\"Well,': 1, 'replied,': 1, 'useful': 1, 'nest': 1, 'inside': 1, \"'okay'\": 1, 'other': 1, 'said:': 1, \"quotes,'\": 1, 'Then': 1, 'according': 1, 'English': 1, 'teacher\"': 1, 'HELLO': 1, 'put': 1, 'went': 1, 'overboard': 1, 'text': 1, 'parentheses).': 1, '\"Sure,\"': 1, 'said': 1, 'confidently': 1, '(thiking': 1, 'myself:': 1, 'way!)': 1, 'definitely': 1, '(not)': 1, 'best': 1, 'moments.': 1, '(((((these': 1, 'properly': 1, 'closed.)': 1, '((there': 1, 'here))': 1, 'some': 1, '(with': 1, 'sentence': 1, 'again': 1, 'carat': 1, '>>': 1, 'Gretzky': 1, \"gt's\": 1, 'Hello!': 1, 'Goodbye!': 1, 'making': 1, 'Well...': 1, 'periods............': 1, \"I'm\": 1, 'sure...': 1, 'Maybe...': 1, 'hm..what': 1, 'only': 1, 'two': 1, 'periods.............or': 1, '\"I': 1, '\"This': 1, 'Wayne': 1, 'terms': 1, 'http://example.org': 1, 'google.com': 1, 'wikipedia.org': 1, 'amazon.com': 1, 'Hello': 1, 'u/user1': 1, 'u/user2,': 1, 'hi?': 1, 'u/user_1_test': 1, 'u/user2Test': 1, '**bold**,': 1, '*italics*,': 1, 'not.': 1, '***bolded': 1, 'italicized***': 1, '[link](https://example.com)': 1, 'Check': 1, 'nInE.': 1, 'HI\"': 1, 'THIS': 1, 'IS': 1, 'A': 1, 'TEST.': 1, 'HI.': 1, 'HI': 1, 'ONE': 1, 'EiGhT': 1, 'TWO': 1, 'THREE.': 1, 'four': 1, 'five': 1, 'six.': 1, 'sEvEn': 1, '**uneven*': 1, '*the': 1, '--': 1, 'emphasis**': 1, 'value\\\\rUsing': 1, 'carriage': 1, 'instead': 1, 'newline': 1, 'WORLD,': 1, 'quote.\"': 1, 'She': 1, 'said,': 1, '\"Here\\'s': 1, 'another.\"': 1, '\"You': 1, 'miss': 1, '100%': 1, 'shots': 1, 'take\"': 1, 'kind': 1, 'different': 1, 'with\\\\rA': 1, '2': 1, '*': 1, '1\\\\n*': 1, '2\\\\n-': 1, 'Here': 1, 'arguments:': 1, '1': 1, '1.': 1, 'new': 1, 'First\\\\n2.': 1, 'Second\\\\n3.': 1, 'Third': 1, 'first': 1, 'second': 1, 'line.': 1, '((1+(1+3+4)^2)+7+(9+8))': 1}\n", + "0 0.000\n", + "1 0.000\n", + "2 0.000\n", + "3 0.000\n", + "4 0.000\n", + "5 3.250\n", + "6 0.000\n", + "7 0.000\n", + "8 0.000\n", + "9 0.125\n", + "10 0.000\n", + "11 0.500\n", + "12 0.000\n", + "13 0.000\n", + "14 0.500\n", + "15 0.250\n", + "16 0.000\n", + "17 0.000\n", + "18 0.000\n", + "19 0.000\n", + "20 1.500\n", + "21 0.000\n", + "22 0.125\n", + "23 0.000\n", + "24 0.500\n", + "25 0.000\n", + "26 0.000\n", + "27 0.000\n", + "28 0.125\n", + "29 0.000\n", + "30 0.500\n", + "31 0.000\n", + "Name: content_word_accommodation, dtype: float64\n", + " conversation_num message\n", + "37 5 I think that I think that I think\n", + "38 5 I am a little confused\n", + "39 5 I don't really know the answer\n", + "40 5 I am sure that this is correct\n", + "41 5 I am fairly certain in my response\n", + "42 5 This is without a doubt the best movie I have ...\n", + "43 5 I am not sure about how to how to approximatel...\n", + "44 5 I believe that he is guilty but I am not very ...\n", + "45 5 I an open to you changing my mind on this issue\n", + "46 5 I don't think the guy is the a$$hole. Thoughts?\n", + "47 5 So who thinks the guy is an ass for asking his...\n", + "48 5 I think that this person is not an asshole bec...\n", + "49 5 I can see how the family is upset because they...\n", + "50 5 Yes, I think his feeling makes sense to me to....\n", + "51 5 I was conflicted because I could understand hi...\n", + "52 5 His MIL has been here for 8 years. You would t...\n", + "53 5 I think he had every right to want to help his...\n", + "54 5 I also agree with culturedCow\n", + "55 5 I don't think he's an asshole. I think his req...\n", + "56 5 I think the guy is an asshole because for all ...\n", + "57 5 I think he also tried to utilize other resourc...\n", + "58 5 I think also he needs to understand that langu...\n", + "59 5 Maybe she does have a problem with learning la...\n", + "60 5 After the edit he done it made it sound like h...\n", + "61 5 I don't think the guy is wrong in asking her t...\n", + "62 5 Learning a second language is easiest when you...\n", + "63 5 I think he tried to help her.� He gave her res...\n", + "{'think': 15, 'learn': 7, 'mother': 5, 'how': 5, \"don't\": 4, 'also': 4, 'guy': 4, 'understand': 4, 'help': 3, 'use': 3, 'resources': 3, 'has': 3, 'law': 3, 'language': 3, 'learning': 3, 'english': 2, 'asshole': 2, 'feel': 2, 'makes': 2, 'capacity': 2, 'same': 2, 'want': 2, 'tried': 2, \"didn't\": 2, 'some': 2, 'asking': 2, 'family': 2, 'certain': 2, 'sure': 2, 'issue': 2, 'America,': 1, 'time': 1, 'research': 1, 'WHY': 1, 'people': 1, 'not.': 1, 'utilize': 1, 'easier.': 1, 'other': 1, 'such': 1, 'then,': 1, 'differently': 1, 'wired': 1, 'take': 1, 'language,': 1, 'needs': 1, 'her.�': 1, 'He': 1, 'easy': 1, 'talk': 1, 'language.': 1, 'country,': 1, 'gave': 1, 'foreign': 1, 'live': 1, 'apparently': 1, 'go': 1, 'If': 1, 'apps': 1, 'brain': 1, 'lives': 1, 'try.': 1, 'more': 1, 'wrong': 1, 'loves': 1, 'older': 1, 'patience': 1, 'english.': 1, 'Learning': 1, 'sound': 1, 'second': 1, 'made': 1, 'done': 1, 'edit': 1, 'After': 1, 'least': 1, 'Your': 1, 'request': 1, 'languages,': 1, 'easiest': 1, 'problem': 1, \"you're\": 1, 'child': 1, 'does': 1, 'Maybe': 1, 'quickly.': 1, 'languages': 1, 'new': 1, 'reason.': 1, 'everyone,': 1, 'reasonable.': 1, 'You': 1, 'asshole.': 1, 'person': 1, 'mind': 1, 'a$$hole.': 1, 'Thoughts?': 1, 'So': 1, 'thinks': 1, 'ass': 1, 'because,': 1, 'open': 1, 'according': 1, 'him,': 1, 'polite': 1, 'approaching': 1, 'see': 1, 'upset': 1, 'changing': 1, 'guilty': 1, \"he's\": 1, 'This': 1, 'confused': 1, 'know': 1, 'answer': 1, 'correct': 1, 'fairly': 1, 'response': 1, 'doubt': 1, 'believe': 1, 'best': 1, 'movie': 1, 'ever': 1, 'seen': 1, 'approximately': 1, 'handle': 1, 'disrespected': 1, \"guy's\": 1, 'feelings.': 1, 'years.': 1, 'wife': 1, 'first.': 1, 'His': 1, 'MIL': 1, 'here': 1, '8': 1, 'little': 1, 'Why': 1, \"she'd\": 1, 'pick': 1, 'English': 1, 'now.': 1, 'agree': 1, 'culturedCow': 1, 'approach': 1, 'strategies': 1, 'discussed': 1, 'maybe': 1, 'however': 1, 'frustration': 1, 'conflicted': 1, 'independent.': 1, \"doesn't\": 1, 'Who': 1, 'to.': 1, 'sense': 1, 'feeling': 1, 'Yes,': 1, 'law?': 1, 'interpreter': 1, 'work': 1, 'them.': 1}\n", + "0 0.000000\n", + "1 0.000000\n", + "2 0.000000\n", + "3 0.000000\n", + "4 0.000000\n", + "5 0.000000\n", + "6 0.000000\n", + "7 0.000000\n", + "8 0.000000\n", + "9 0.000000\n", + "10 0.250000\n", + "11 0.000000\n", + "12 0.000000\n", + "13 0.000000\n", + "14 0.000000\n", + "15 0.000000\n", + "16 0.066667\n", + "17 0.000000\n", + "18 0.000000\n", + "19 0.209524\n", + "20 0.542857\n", + "21 1.126190\n", + "22 0.333333\n", + "23 0.000000\n", + "24 0.000000\n", + "25 0.000000\n", + "26 0.000000\n", + "Name: content_word_accommodation, dtype: float64\n", + " conversation_num message\n", + "64 6 hello\n", + "65 6 So how should we answer this\n", + "66 6 We can start here. What is the question?\n", + "67 6 I am not sure. Where is the rest of our team?\n", + "68 6 Please help me figure this out, I really want ...\n", + "{'hello': 1, 'Where': 1, 'want': 1, 'out,': 1, 'figure': 1, 'help': 1, 'Please': 1, 'team?': 1, 'rest': 1, 'sure.': 1, 'So': 1, 'question?': 1, 'What': 1, 'here.': 1, 'start': 1, 'We': 1, 'answer': 1, 'how': 1, 'please': 1}\n", + "0 0\n", + "1 0\n", + "2 0\n", + "3 0\n", + "4 0\n", + "Name: content_word_accommodation, dtype: int64\n", + " conversation_num message\n", + "69 7 Hey\n", + "70 7 Okay bro lets split it 50/50\n", + "71 7 Maybe but how about 60/40? I doubt its fair ot...\n", + "72 7 Seems fair\n", + "{'fair': 2, 'Hey': 1, 'Okay': 1, 'bro': 1, 'lets': 1, 'split': 1, '50/50': 1, 'Maybe': 1, 'how': 1, '60/40?': 1, 'doubt': 1, 'otherwise': 1, 'Seems': 1}\n", + "0 0.0\n", + "1 0.0\n", + "2 0.0\n", + "3 0.5\n", + "Name: content_word_accommodation, dtype: float64\n", + " conversation_num message\n", + "73 8 I am not sure. Where is the rest of our team?\n", + "74 8 Well please help me figure this out, I really ...\n", + "{'please': 2, 'sure.': 1, 'Where': 1, 'rest': 1, 'team?': 1, 'Well': 1, 'help': 1, 'figure': 1, 'out,': 1, 'want': 1}\n", + "0 0\n", + "1 0\n", + "Name: content_word_accommodation, dtype: int64\n", + " conversation_num message\n", + "75 9 Seems possible\n", + "76 9 I see what youre thinking but I disagree\n", + "77 9 We get only one chance so we should understand...\n", + "78 9 I just don't agree, I'm making the 60/40 split\n", + "{'split': 2, 'Seems': 1, 'possible': 1, 'see': 1, 'thinking': 1, 'disagree': 1, 'We': 1, 'only': 1, 'chance': 1, 'understand': 1, 'how': 1, \"don't\": 1, 'agree,': 1, \"I'm\": 1, 'making': 1, '60/40': 1}\n", + "0 0.0\n", + "1 0.0\n", + "2 0.0\n", + "3 0.5\n", + "Name: content_word_accommodation, dtype: float64\n", + " conversation_num message\n", + "79 10 hey\n", + "80 10 I think we should try something else\n", + "81 10 Ok whatever. You should leave the team then\n", + "112 10 I understand your perspective and agree that I...\n", + "{'think': 4, 'STEM': 2, 'something': 2, 'address': 2, 'women': 2, 'their': 2, 'hiring': 2, \"don\\\\'t\": 1, 'discrepancy,': 1, 'even': 1, 'implementing': 1, 'priority': 1, 'decisions.': 1, 'While': 1, 'explicitly': 1, 'companies': 1, 'believer': 1, 'hire': 1, 'simply': 1, 'gender,': 1, 'mindful': 1, 'gender': 1, 'gap': 1, 'look': 1, 'issues': 1, 'through': 1, 'done': 1, 'hey': 1, 'careers': 1, 'agree': 1, 'try': 1, 'else': 1, 'Ok': 1, 'whatever.': 1, 'You': 1, 'leave': 1, 'team': 1, 'understand': 1, 'perspective': 1, 'want': 1, 'underrepresented': 1, 'resentment': 1, 'workplace': 1, 'women,': 1, 'further': 1, 'compound': 1, 'issue': 1, 'looking': 1, 'at.': 1, 'true': 1, 'practices.': 1}\n", + "0 0\n", + "1 0\n", + "2 0\n", + "3 0\n", + "Name: content_word_accommodation, dtype: int64\n", + " conversation_num message\n", + "82 11 Honestly thank you so so much\n", + "83 11 What's the plan?\n", + "84 11 That is the dumbest idea I've heard; youre act...\n", + "85 11 What's ur problem here?\n", + "113 11 I understand your perspective and agree that I...\n", + "{'think': 3, 'women': 2, 'STEM': 2, \"What's\": 2, 'address': 2, 'their': 2, 'hiring': 2, 'decisions.': 1, 'careers': 1, 'believer': 1, 'something': 1, 'done': 1, 'discrepancy,': 1, 'even': 1, 'implementing': 1, 'priority': 1, 'Honestly': 1, 'While': 1, 'underrepresented': 1, 'companies': 1, 'explicitly': 1, 'hire': 1, 'simply': 1, 'gender,': 1, 'mindful': 1, 'gender': 1, 'gap': 1, 'look': 1, 'issues': 1, 'through': 1, \"don\\\\'t\": 1, 'true': 1, 'thank': 1, 'problem': 1, 'much': 1, 'plan?': 1, 'That': 1, 'dumbest': 1, 'idea': 1, \"I've\": 1, 'heard;': 1, 'actually': 1, 'dumb': 1, 'af': 1, 'ur': 1, 'here?': 1, 'at.': 1, 'understand': 1, 'perspective': 1, 'agree': 1, 'want': 1, 'resentment': 1, 'workplace': 1, 'women,': 1, 'further': 1, 'compound': 1, 'issue': 1, 'looking': 1, 'practices.': 1}\n", + "0 0\n", + "1 0\n", + "2 0\n", + "3 0\n", + "4 0\n", + "Name: content_word_accommodation, dtype: int64\n", + " conversation_num message\n", + "86 12 Pleasure and an honor to meet you all\n", + "87 12 We should try that next\n", + "88 12 Could you please explain why? I don't really u...\n", + "89 12 Sorry sorry I didn't mean to\n", + "114 12 I understand your perspective and agree that I...\n", + "{'think': 3, 'women': 2, 'STEM': 2, 'address': 2, 'their': 2, 'understand': 2, 'hiring': 2, 'decisions.': 1, 'careers': 1, 'believer': 1, 'something': 1, 'done': 1, 'discrepancy,': 1, 'even': 1, 'implementing': 1, 'priority': 1, 'Pleasure': 1, 'While': 1, 'underrepresented': 1, 'companies': 1, 'explicitly': 1, 'hire': 1, 'simply': 1, 'gender,': 1, 'mindful': 1, 'gender': 1, 'gap': 1, 'look': 1, 'issues': 1, 'through': 1, \"don\\\\'t\": 1, 'true': 1, 'honor': 1, 'sorry': 1, 'meet': 1, 'We': 1, 'try': 1, 'next': 1, 'Could': 1, 'please': 1, 'explain': 1, 'why?': 1, \"don't\": 1, 'thinking': 1, 'Sorry': 1, \"didn't\": 1, 'at.': 1, 'mean': 1, 'perspective': 1, 'agree': 1, 'want': 1, 'resentment': 1, 'workplace': 1, 'women,': 1, 'further': 1, 'compound': 1, 'issue': 1, 'looking': 1, 'practices.': 1}\n", + "0 0\n", + "1 0\n", + "2 0\n", + "3 0\n", + "4 0\n", + "Name: content_word_accommodation, dtype: int64\n", + " conversation_num message\n", + "90 13 I don't really want to work with you all but l...\n", + "91 13 Fine by me\n", + "92 13 Ok so which part should we do first? the first...\n", + "115 13 I understand your perspective and agree that I...\n", + "{'think': 3, 'want': 2, 'STEM': 2, 'address': 2, 'women': 2, 'their': 2, 'hiring': 2, \"don't\": 1, 'While': 1, 'discrepancy,': 1, 'even': 1, 'implementing': 1, 'priority': 1, 'decisions.': 1, \"don\\\\'t\": 1, 'something': 1, 'companies': 1, 'explicitly': 1, 'hire': 1, 'simply': 1, 'gender,': 1, 'mindful': 1, 'gender': 1, 'gap': 1, 'look': 1, 'issues': 1, 'through': 1, 'done': 1, 'careers': 1, 'believer': 1, 'perspective': 1, 'work': 1, \"let's\": 1, 'Fine': 1, 'Ok': 1, 'part': 1, 'first?': 1, 'first': 1, 'second?': 1, 'understand': 1, 'agree': 1, 'underrepresented': 1, 'resentment': 1, 'workplace': 1, 'women,': 1, 'further': 1, 'compound': 1, 'issue': 1, 'looking': 1, 'at.': 1, 'true': 1, 'practices.': 1}\n", + "0 0\n", + "1 0\n", + "2 0\n", + "3 0\n", + "Name: content_word_accommodation, dtype: int64\n", + " conversation_num message\n", + "93 14 Please don't do that?\n", + "94 14 I don't think that will work\n", + "95 14 I'm exhuasted rn\n", + "96 14 i don't really care please just finish this up\n", + "97 14 Please don't do that?\n", + "98 14 I don't think that will work\n", + "99 14 I'm exhuasted rn\n", + "100 14 i don't really care please just finish this up\n", + "101 14 i appreciate all this from you\n", + "102 14 well we should start rn, our part is long\n", + "103 14 ok forgive me for this error but\n", + "104 14 you have to redo the whole thing\n", + "105 14 ok so who will work with me? where should we b...\n", + "106 14 i appreciate all this from you\n", + "107 14 well we should start rn, our part is long\n", + "108 14 ok forgive us for this error but\n", + "109 14 you have to redo the whole thing\n", + "110 14 ok so who will work with me? where should we b...\n", + "111 14 I understand your perspective and agree that I...\n", + "{\"don't\": 6, 'think': 5, 'i': 4, 'work': 4, 'ok': 4, 'begin?': 2, 'error': 2, 'redo': 2, 'whole': 2, 'thing': 2, 'Please': 2, 'their': 2, 'women': 2, 'STEM': 2, 'hiring': 2, 'address': 2, 'forgive': 2, 'me?': 2, 'long': 2, 'part': 2, 'that?': 2, \"I'm\": 2, 'exhuasted': 2, 'rn': 2, 'care': 2, 'please': 2, 'rn,': 2, 'start': 2, 'finish': 2, 'appreciate': 2, 'issues': 1, 'companies': 1, 'priority': 1, 'decisions.': 1, 'While': 1, \"don\\\\'t\": 1, 'even': 1, 'explicitly': 1, 'look': 1, 'hire': 1, 'simply': 1, 'through': 1, 'gender,': 1, 'mindful': 1, 'gender': 1, 'gap': 1, 'implementing': 1, 'compound': 1, 'discrepancy,': 1, 'further': 1, 'understand': 1, 'perspective': 1, 'agree': 1, 'want': 1, 'resentment': 1, 'workplace': 1, 'women,': 1, 'issue': 1, 'done': 1, 'looking': 1, 'at.': 1, 'true': 1, 'underrepresented': 1, 'careers': 1, 'believer': 1, 'something': 1, 'practices.': 1}\n", + "0 0.000000\n", + "1 0.166667\n", + "2 0.000000\n", + "3 0.000000\n", + "4 0.166667\n", + "5 0.166667\n", + "6 0.000000\n", + "7 0.000000\n", + "8 0.250000\n", + "9 0.000000\n", + "10 0.000000\n", + "11 0.000000\n", + "12 0.000000\n", + "13 0.000000\n", + "14 0.000000\n", + "15 0.000000\n", + "16 0.000000\n", + "17 0.000000\n", + "18 0.000000\n", + "Name: content_word_accommodation, dtype: float64\n", + " conversation_num message\n", + "116 144 I understand your perspective and agree that I...\n", + "{'think': 3, 'address': 2, 'hiring': 2, 'STEM': 2, 'their': 2, 'women': 2, 'priority': 1, 'decisions.': 1, 'While': 1, \"don\\\\'t\": 1, 'companies': 1, 'explicitly': 1, 'hire': 1, 'even': 1, 'simply': 1, 'gender,': 1, 'mindful': 1, 'gender': 1, 'gap': 1, 'look': 1, 'issues': 1, 'through': 1, 'implementing': 1, 'understand': 1, 'discrepancy,': 1, 'issue': 1, 'agree': 1, 'want': 1, 'resentment': 1, 'workplace': 1, 'women,': 1, 'further': 1, 'compound': 1, 'looking': 1, 'perspective': 1, 'at.': 1, 'true': 1, 'underrepresented': 1, 'careers': 1, 'believer': 1, 'something': 1, 'done': 1, 'practices.': 1}\n", + "0 0\n", + "Name: content_word_accommodation, dtype: int64\n", + " conversation_num message\n", + "117 15 I understand your perspective and agree that I...\n", + "{'think': 3, 'address': 2, 'hiring': 2, 'STEM': 2, 'their': 2, 'women': 2, 'priority': 1, 'decisions.': 1, 'While': 1, \"don\\\\'t\": 1, 'companies': 1, 'explicitly': 1, 'hire': 1, 'even': 1, 'simply': 1, 'gender,': 1, 'mindful': 1, 'gender': 1, 'gap': 1, 'look': 1, 'issues': 1, 'through': 1, 'implementing': 1, 'understand': 1, 'discrepancy,': 1, 'issue': 1, 'agree': 1, 'want': 1, 'resentment': 1, 'workplace': 1, 'women,': 1, 'further': 1, 'compound': 1, 'looking': 1, 'perspective': 1, 'at.': 1, 'true': 1, 'underrepresented': 1, 'careers': 1, 'believer': 1, 'something': 1, 'done': 1, 'practices.': 1}\n", + "0 0\n", + "Name: content_word_accommodation, dtype: int64\n", + " conversation_num message\n", + "118 16 I understand your perspective and agree that I...\n", + "{'think': 3, 'address': 2, 'hiring': 2, 'STEM': 2, 'their': 2, 'women': 2, 'priority': 1, 'decisions.': 1, 'While': 1, \"don\\\\'t\": 1, 'companies': 1, 'explicitly': 1, 'hire': 1, 'even': 1, 'simply': 1, 'gender,': 1, 'mindful': 1, 'gender': 1, 'gap': 1, 'look': 1, 'issues': 1, 'through': 1, 'implementing': 1, 'understand': 1, 'discrepancy,': 1, 'issue': 1, 'agree': 1, 'want': 1, 'resentment': 1, 'workplace': 1, 'women,': 1, 'further': 1, 'compound': 1, 'looking': 1, 'perspective': 1, 'at.': 1, 'true': 1, 'underrepresented': 1, 'careers': 1, 'believer': 1, 'something': 1, 'done': 1, 'practices.': 1}\n", + "0 0\n", + "Name: content_word_accommodation, dtype: int64\n", + " conversation_num message\n", + "119 17 I understand your perspective and agree that I...\n", + "{'think': 3, 'address': 2, 'hiring': 2, 'STEM': 2, 'their': 2, 'women': 2, 'priority': 1, 'decisions.': 1, 'While': 1, \"don\\\\'t\": 1, 'companies': 1, 'explicitly': 1, 'hire': 1, 'even': 1, 'simply': 1, 'gender,': 1, 'mindful': 1, 'gender': 1, 'gap': 1, 'look': 1, 'issues': 1, 'through': 1, 'implementing': 1, 'understand': 1, 'discrepancy,': 1, 'issue': 1, 'agree': 1, 'want': 1, 'resentment': 1, 'workplace': 1, 'women,': 1, 'further': 1, 'compound': 1, 'looking': 1, 'perspective': 1, 'at.': 1, 'true': 1, 'underrepresented': 1, 'careers': 1, 'believer': 1, 'something': 1, 'done': 1, 'practices.': 1}\n", + "0 0\n", + "Name: content_word_accommodation, dtype: int64\n", + " conversation_num message\n", + "120 18 I understand your perspective and agree that I...\n", + "{'think': 3, 'address': 2, 'hiring': 2, 'STEM': 2, 'their': 2, 'women': 2, 'priority': 1, 'decisions.': 1, 'While': 1, \"don\\\\'t\": 1, 'companies': 1, 'explicitly': 1, 'hire': 1, 'even': 1, 'simply': 1, 'gender,': 1, 'mindful': 1, 'gender': 1, 'gap': 1, 'look': 1, 'issues': 1, 'through': 1, 'implementing': 1, 'understand': 1, 'discrepancy,': 1, 'issue': 1, 'agree': 1, 'want': 1, 'resentment': 1, 'workplace': 1, 'women,': 1, 'further': 1, 'compound': 1, 'looking': 1, 'perspective': 1, 'at.': 1, 'true': 1, 'underrepresented': 1, 'careers': 1, 'believer': 1, 'something': 1, 'done': 1, 'practices.': 1}\n", + "0 0\n", + "Name: content_word_accommodation, dtype: int64\n", + " conversation_num message\n", + "121 19 I understand your perspective and agree that I...\n", + "{'think': 3, 'address': 2, 'hiring': 2, 'STEM': 2, 'their': 2, 'women': 2, 'priority': 1, 'decisions.': 1, 'While': 1, \"don\\\\'t\": 1, 'companies': 1, 'explicitly': 1, 'hire': 1, 'even': 1, 'simply': 1, 'gender,': 1, 'mindful': 1, 'gender': 1, 'gap': 1, 'look': 1, 'issues': 1, 'through': 1, 'implementing': 1, 'understand': 1, 'discrepancy,': 1, 'issue': 1, 'agree': 1, 'want': 1, 'resentment': 1, 'workplace': 1, 'women,': 1, 'further': 1, 'compound': 1, 'looking': 1, 'perspective': 1, 'at.': 1, 'true': 1, 'underrepresented': 1, 'careers': 1, 'believer': 1, 'something': 1, 'done': 1, 'practices.': 1}\n", + "0 0\n", + "Name: content_word_accommodation, dtype: int64\n", + " conversation_num message\n", + "122 20 I understand your perspective and agree that I...\n", + "{'think': 3, 'address': 2, 'hiring': 2, 'STEM': 2, 'their': 2, 'women': 2, 'priority': 1, 'decisions.': 1, 'While': 1, \"don\\\\'t\": 1, 'companies': 1, 'explicitly': 1, 'hire': 1, 'even': 1, 'simply': 1, 'gender,': 1, 'mindful': 1, 'gender': 1, 'gap': 1, 'look': 1, 'issues': 1, 'through': 1, 'implementing': 1, 'understand': 1, 'discrepancy,': 1, 'issue': 1, 'agree': 1, 'want': 1, 'resentment': 1, 'workplace': 1, 'women,': 1, 'further': 1, 'compound': 1, 'looking': 1, 'perspective': 1, 'at.': 1, 'true': 1, 'underrepresented': 1, 'careers': 1, 'believer': 1, 'something': 1, 'done': 1, 'practices.': 1}\n", + "0 0\n", + "Name: content_word_accommodation, dtype: int64\n", + " conversation_num message\n", + "123 21 I understand your perspective and agree that I...\n", + "{'think': 3, 'address': 2, 'hiring': 2, 'STEM': 2, 'their': 2, 'women': 2, 'priority': 1, 'decisions.': 1, 'While': 1, \"don\\\\'t\": 1, 'companies': 1, 'explicitly': 1, 'hire': 1, 'even': 1, 'simply': 1, 'gender,': 1, 'mindful': 1, 'gender': 1, 'gap': 1, 'look': 1, 'issues': 1, 'through': 1, 'implementing': 1, 'understand': 1, 'discrepancy,': 1, 'issue': 1, 'agree': 1, 'want': 1, 'resentment': 1, 'workplace': 1, 'women,': 1, 'further': 1, 'compound': 1, 'looking': 1, 'perspective': 1, 'at.': 1, 'true': 1, 'underrepresented': 1, 'careers': 1, 'believer': 1, 'something': 1, 'done': 1, 'practices.': 1}\n", + "0 0\n", + "Name: content_word_accommodation, dtype: int64\n", + " conversation_num message\n", + "124 22 I understand your perspective and agree that I...\n", + "{'think': 3, 'address': 2, 'hiring': 2, 'STEM': 2, 'their': 2, 'women': 2, 'priority': 1, 'decisions.': 1, 'While': 1, \"don\\\\'t\": 1, 'companies': 1, 'explicitly': 1, 'hire': 1, 'even': 1, 'simply': 1, 'gender,': 1, 'mindful': 1, 'gender': 1, 'gap': 1, 'look': 1, 'issues': 1, 'through': 1, 'implementing': 1, 'understand': 1, 'discrepancy,': 1, 'issue': 1, 'agree': 1, 'want': 1, 'resentment': 1, 'workplace': 1, 'women,': 1, 'further': 1, 'compound': 1, 'looking': 1, 'perspective': 1, 'at.': 1, 'true': 1, 'underrepresented': 1, 'careers': 1, 'believer': 1, 'something': 1, 'done': 1, 'practices.': 1}\n", + "0 0\n", + "Name: content_word_accommodation, dtype: int64\n", + " conversation_num message\n", + "125 23 And I will always love you\n", + "126 23 Can you help me, can you please?\n", + "127 23 Can you, will you, could you please be mine?\n", + "128 23 This land is your land, this land is my land; ...\n", + "{'land': 3, 'Can': 2, 'you,': 2, 'And': 1, 'always': 1, 'love': 1, 'help': 1, 'me,': 1, 'please?': 1, 'please': 1, 'mine?': 1, 'This': 1, 'land,': 1, 'land;': 1, 'made': 1}\n", + "0 0.0\n", + "1 0.0\n", + "2 0.5\n", + "3 0.0\n", + "Name: content_word_accommodation, dtype: float64\n", + " conversation_num message\n", + "129 0 unneccessagf shoulds shouldve should'nt\n", + "130 0 wouldnt unneedofek want must've should'nt\n", + "131 0 hopes wish\n", + "132 0 must'nt rather wouldn't ought'nt\n", + "133 0 needn't unwantpotnw hopefulness oughta couldn't\n", + ".. ... ...\n", + "666 0 first\n", + "667 0 Who is this\n", + "668 0 Who is this. Why is this\n", + "669 0 Who what when where why is this\n", + "670 0 Who is this?\n", + "\n", + "[542 rows x 2 columns]\n", + "{'alot': 7, 'around': 6, \"let's\": 5, 'come': 5, 'thine': 5, 'mustnt': 5, 'know': 5, \"she'll\": 5, 'fucks': 5, \"I've\": 5, \"should'nt\": 5, 'think': 4, 'here': 4, 'how': 4, 'ourselves': 4, 'lets': 4, \"hasn't\": 4, 'yall': 4, \"we'd\": 4, 'u': 4, 'sang': 4, 'probably': 4, 'except': 4, 'mates': 4, 'Who': 4, 'hell': 4, 'i': 3, 'masters': 3, 'best': 3, 'came': 3, \"we've\": 3, 'either': 3, 'dick': 3, \"I'll\": 3, 'insides': 3, \"you're\": 3, 'ive': 3, 'sons': 3, 'sometime': 3, \"I'd\": 3, 'butt': 3, \"ought'nt\": 3, 'ate': 3, 'sort': 3, 'cried': 3, 'believe': 3, \"it'll\": 3, 'sucked': 3, \"wouldn't\": 3, \"must'nt\": 3, \"must've\": 3, 'begin': 2, \"don't\": 2, 'sob': 2, 'option': 2, \"mustn't\": 2, 'titty': 2, \"you've\": 2, 'lucks': 2, \"isn't\": 2, 'nearsighted': 2, 'seen': 2, 'sees': 2, 'went': 2, 'yes': 2, 'seemed': 2, 'stuns': 2, 'demise': 2, 'living': 2, 'shook': 2, 'lost': 2, 'whining': 2, 'tried': 2, 'depend': 2, 'feels': 2, 'shall': 2, 'must': 2, \"won't\": 2, 'held': 2, 'ran': 2, 'described': 2, 'condom': 2, \"it'd\": 2, \"who'll\": 2, 'gay': 2, \"he's\": 2, \"you'll\": 2, 'hers': 2, 'wonders': 2, 'brings': 2, 'grief': 2, 'miss': 2, 'gonna': 2, 'warring': 2, 'wondered': 2, \"how's\": 2, 'skin': 2, 'rub': 2, 'salvation': 2, 'else': 2, 'section': 2, 'ton': 2, 'affected': 2, 'depends': 2, 'infer': 2, 'believes': 2, 'waited': 2, 'man': 2, 'ladies': 2, \"ma'am\": 2, 'citizen': 2, 'makes': 2, 'describe': 2, \"she's\": 2, 'look': 2, 'possibly': 2, 'immediately': 2, 'condo': 2, 'listens': 2, 'first': 2, 'hearing': 2, 'plus': 2, 'noisy': 2, 'drily': 2, 'noises': 2, 'little': 2, 'hand': 2, 'ear': 2, 'defined': 2, 'palms': 2, \"y'all\": 2, \"you'd\": 2, 'along': 2, 'hears': 2, 'add': 2, 'both': 2, 'thee': 2, 'completes': 2, 'ye': 2, 'essential': 2, 'though': 2, 'altogether': 2, 'apparently': 2, 'need': 2, 'generally': 2, 'instead': 2, 'mostly': 2, 'whether': 2, 'oughta': 2, \"needn't\": 2, 'feared': 2, 'hopes': 2, 'appearing': 2, 'now': 2, 'rather': 2, 'lamefpbv': 1, 'fattsc': 1, 'appreciate': 1, 'jaded': 1, 'rationallpfg': 1, 'marriexrzvf': 1, 'longingjhbn': 1, 'inside': 1, 'inevitabx': 1, 'undoubtgyzl': 1, 'disadvantagenxtql': 1, 'insincermy': 1, 'remorseoeia': 1, 'bedroomox': 1, 'difficultna': 1, 'open': 1, 'unquestionqzj': 1, 'girlshfsio': 1, 'cousinbzmwh': 1, 'adults': 1, 'wars': 1, 'breathdcafq': 1, 'brainz': 1, 'bones': 1, 'digestp': 1, 'rashnut': 1, 'tit': 1, 'itchwght': 1, 'kneenjk': 1, 'lungr': 1, 'facialt': 1, 'syndromeagxe': 1, 'slenderi': 1, 'spine': 1, 'husbandyabx': 1, 'marrieboagv': 1, 'brotherrhda': 1, 'exhusbanda': 1, 'granddaursubf': 1, 'familiesc': 1, 'maidqyldk': 1, 'faintdlseh': 1, 'invariabr': 1, 'vanity': 1, 'explaining': 1, 'helperhnx': 1, 'lotsa': 1, 'extremely': 1, 'piecg': 1, 'page': 1, 'meaningidwf': 1, 'differenceb': 1, 'whole': 1, 'alrightdo': 1, 'nor': 1, 'sunny': 1, 'sense': 1, 'complimentjlbhe': 1, 'convincfthqs': 1, 'graces': 1, 'romanczk': 1, 'praisyvpch': 1, 'reasonpulei': 1, 'safelmgx': 1, 'hehp': 1, 'talentv': 1, 'seem': 1, 'patioquf': 1, 'questiontmyhc': 1, 'much': 1, 'interestuthxn': 1, 'exactofn': 1, 'difficultnmril': 1, 'exactnqhfl': 1, 'vulnerabc': 1, 'precisjawd': 1, 'unquestionj': 1, 'distinctcx': 1, 'wholly': 1, 'completed': 1, 'undoubts': 1, 'shitzv': 1, 'nervew': 1, 'tons': 1, 'reorganitkgar': 1, 'greater': 1, 'simple': 1, 'extent': 1, 'mucho': 1, 'somehow': 1, 'eying': 1, 'belly': 1, 'pussyah': 1, 'alarmkzu': 1, 'tremblwzocs': 1, 'triumphujryl': 1, \"oughtn't\": 1, \"shouldn't\": 1, 'doesnt': 1, 'effortcxbe': 1, 'nope': 1, \"need'nt\": 1, 'negatlpji': 1, 'dang': 1, 'loserxc': 1, 'bone': 1, 'strongm': 1, 'dumbpbzvd': 1, 'bitchkvyuz': 1, 'homo': 1, 'fuck': 1, 'shitq': 1, 'lose': 1, 'ranking': 1, 'cock': 1, 'concludwo': 1, 'pisslkx': 1, 'misersjne': 1, 'stunned': 1, 'frightixu': 1, 'shakiihxd': 1, 'eventually': 1, 'perhaps': 1, 'soon': 1, 'back': 1, 'completely': 1, 'such': 1, 'seriously': 1, 'overwhelmryjd': 1, 'primarily': 1, 'whenever': 1, 'strainf': 1, 'shakewm': 1, 'determined': 1, 'defeatxjq': 1, 'uncertainve': 1, 'endeavafre': 1, 'confusmb': 1, 'abilitbdz': 1, 'franticivctu': 1, 'confident': 1, 'irresponsiblet': 1, 'masterfulvq': 1, 'uncertainu': 1, 'resourcefulcamzd': 1, 'queersgm': 1, 'pussyeqru': 1, 'therapdkzr': 1, 'OCD': 1, 'coronard': 1, 'scannrq': 1, 'circle': 1, 'reddeyo': 1, 'glowx': 1, 'veggiecla': 1, 'penisygbjp': 1, 'healing': 1, 'skinnijsv': 1, 'sunshingwv': 1, 'musclephj': 1, 'clickhbiyp': 1, 'scannmbgl': 1, 'yet': 1, 'eyeqblh': 1, 'rectangypwos': 1, 'triangdg': 1, 'seer': 1, 'looked': 1, 'columnxvs': 1, 'sightsue': 1, 'whitishk': 1, 'healed': 1, 'gynobqovn': 1, 'mofo': 1, 'woundzlkw': 1, 'prickyj': 1, 'niggerjvw': 1, 'embalmjt': 1, 'oded': 1, 'gravevwhfi': 1, 'importanmqdw': 1, 'tombetp': 1, 'drownksti': 1, 'unproducet': 1, 'lynchxafto': 1, 'war': 1, 'dies': 1, 'bereavemfhcn': 1, 'genocidgjoau': 1, 'morticianbspv': 1, 'asthmanmc': 1, 'tumofwvj': 1, 'chokkohz': 1, 'physicianuqvwr': 1, 'throbj': 1, 'anorexiky': 1, 'tinglliqf': 1, 'throbpqym': 1, 'child': 1, 'unneccessagf': 1, \"men'bldt\": 1, 'avertv': 1, \"skin'h\": 1, 'assumbvd': 1, 'usually': 1, 'someonesyc': 1, 'theorhe': 1, 'spose': 1, 'hardly': 1, 'often': 1, 'vs': 1, 'supported': 1, \"who's\": 1, 'takes': 1, 'happened': 1, 'saw': 1, 'slept': 1, 'took': 1, 'pals': 1, 'bud': 1, 'amigodyzg': 1, \"mate's\": 1, 'girlfriendur': 1, 'neighborwtey': 1, 'bftxuv': 1, 'comradq': 1, 'colleaguejo': 1, 'buddiesef': 1, 'bfbfi': 1, \"what's\": 1, 'shant': 1, 'silkvr': 1, 'thin': 1, 'hot': 1, 'pissmygt': 1, 'launchvt': 1, 'forcev': 1, 'using': 1, 'obedienwayd': 1, 'compliance': 1, 'obedienlpijv': 1, 'pick': 1, 'arrogant': 1, 'ferocwv': 1, 'punishx': 1, 'enragvbj': 1, 'contemptawb': 1, 'maniacxo': 1, 'rebelmp': 1, 'press': 1, 'stupidncwg': 1, 'hellish': 1, 'paranoilbock': 1, 'naga': 1, 'angrwmnl': 1, 'tantrumsv': 1, 'weightliftd': 1, 'driemau': 1, 'grippfipun': 1, 'feelingwkaf': 1, 'thinnajy': 1, \"skin'men\": 1, 'weight': 1, \"ain't\": 1, 'yearnqgjth': 1, 'self': 1, 'tentativwc': 1, 'vivid': 1, 'likable': 1, 'enjoyable': 1, 'succeed': 1, 'smitten': 1, 'sharpest': 1, 'rightfully': 1, 'unreal': 1, 'reaffirmation': 1, 'joy': 1, 'goood': 1, 'speedy': 1, 'self-sufficient': 1, 'tantalize': 1, 'energize': 1, 'gusto': 1, 'win': 1, 'any': 1, 'shan': 1, 'other': 1, 'maybe': 1, 'guess': 1, 'ab': 1, 'abc': 1, 'abcd': 1, 'abcde': 1, 'abcdef': 1, 'this.': 1, 'Why': 1, 'imaculate': 1, 'illustrious': 1, 'valiantly': 1, 'greyiyck': 1, 'commit': 1, 'banned': 1, 'fundamental': 1, 'obedienoki': 1, 'solutionhk': 1, 'onto': 1, 'behind': 1, 'amongzekb': 1, 'unto': 1, 'across': 1, 'above': 1, \"we're\": 1, \"we'll\": 1, 'delectabliktz': 1, 'faithfully': 1, 'screen': 1, 'sand': 1, 'sweetness': 1, 'drieqs': 1, 'deoders': 1, 'coldedrm': 1, 'hear': 1, 'caramelzjw': 1, 'wetly': 1, 'tonguel': 1, 'thoust': 1, 'responsibly': 1, 'evocative': 1, 'motivnt': 1, 'origins': 1, 'thereforrnsq': 1, 'taxansjbf': 1, 'asses': 1, 'queerduvk': 1, 'pregnange': 1, 'porch': 1, 'erectionux': 1, 'orgasmt': 1, 'sexw': 1, 'chlamydia': 1, 'rapistph': 1, 'ovarsg': 1, 'tits': 1, 'withheld': 1, 'defencjtr': 1, 'hesitaz': 1, 'tightq': 1, 'halthvc': 1, 'protectab': 1, 'securulxeo': 1, 'interferhvrx': 1, 'deniaanhcy': 1, 'restraindrv': 1, 'waits': 1, 'controlx': 1, 'tidy': 1, 'defeats': 1, 'hopelesspkm': 1, 'heartbrokekible': 1, 'loses': 1, 'resigne': 1, 'fuckinc': 1, 'pornfzqh': 1, 'erectile': 1, 'spent': 1, 'femalejlcvo': 1, 'babeae': 1, \"doesn't\": 1, 'goes': 1, 'start': 1, \"they're\": 1, 'describes': 1, 'dislikes': 1, 'knows': 1, \"that'll\": 1, 'hated': 1, 'appeared': 1, 'disliked': 1, 'forgote': 1, 'approachjuzeb': 1, 'cared': 1, 'believed': 1, 'awhile': 1, 'outerki': 1, 'perpetualp': 1, 'internalltsem': 1, 'tiniest': 1, 'immediateness': 1, 'fademl': 1, 'finishykxwt': 1, 'corners': 1, 'old': 1, 'fit': 1, 'sadness': 1, 'cry': 1, 'disheartengzeaq': 1, 'transfergdnu': 1, 'piety': 1, 'sects': 1, 'sunni': 1, 'scripturvko': 1, 'templeme': 1, 'credentialrs': 1, 'com': 1, 'absentp': 1, 'mfg': 1, 'reportsuro': 1, 'commercsjezh': 1, 'collabw': 1, 'outsourcrfndl': 1, 'grad': 1, 'christianwq': 1, 'econgv': 1, 'goalg': 1, 'cashlf': 1, 'debti': 1, 'shop': 1, 'consumerzae': 1, 'inheritfkyv': 1, 'stocks': 1, 'taxaxv': 1, 'cheapi': 1, 'incomegfl': 1, 'bet': 1, 'auditing': 1, 'muhammyprqh': 1, 'jesuitgsabe': 1, 'sadly': 1, 'excusk': 1, 'damagbntc': 1, 'pessimisrc': 1, 'hopelessa': 1, 'dissatisfcl': 1, 'fatigucuvjd': 1, 'disillusionqt': 1, 'isolatg': 1, 'assemblkd': 1, 'meet': 1, 'band': 1, 'guyawg': 1, 'kid': 1, 'help': 1, 'peoplelnm': 1, 'rosary': 1, 'organizho': 1, 'participanteir': 1, 'grandpap': 1, 'mailerut': 1, 'everybodhn': 1, 'noboddup': 1, \"it's\": 1, \"who'd\": 1, 'wholl': 1, 'karma': 1, 'orthodoxfdy': 1, 'rosaries': 1, 'sect': 1, 'cleanhwe': 1, 'deducczr': 1, 'roomiepuma': 1, 'age': 1, 'nephewz': 1, 'wifevxmlj': 1, \"mom's\": 1, 'parentuph': 1, 'pa': 1, 'fatherhb': 1, 'aunte': 1, 'grandkidywgxb': 1, 'exes': 1, 'ex': 1, 'relatives': 1, 'husbandypoiz': 1, 'mommalqhxo': 1, 'sickengwxku': 1, 'hurtefdp': 1, 'lazieqxar': 1, 'impersonal': 1, 'egotisy': 1, 'destroygj': 1, 'unwelcomrfwd': 1, 'jealoustemf': 1, 'unkind': 1, 'significant': 1, 'lotta': 1, 'greatest': 1, 'singlufb': 1, 'rest': 1, 'bro': 1, 'moms': 1, 'eyewut': 1, 'facialrqth': 1, 'squaruei': 1, 'purplabnk': 1, 'colourxml': 1, 'roundxgijb': 1, 'colorht': 1, 'staring': 1, 'yellowkyn': 1, 'triangqmpv': 1, 'shiny': 1, 'lookerutn': 1, 'scannv': 1, 'scanni': 1, 'foot': 1, 'breastqyp': 1, 'lipslt': 1, 'toe': 1, 'titties': 1, 'toenailhtqe': 1, 'droolc': 1, 'hip': 1, 'boobvw': 1, 'slenderbmvq': 1, 'ass': 1, 'nudeytmcb': 1, 'stomachltbw': 1, 'wake': 1, 'fullmzf': 1, 'glad': 1, 'great': 1, 'listened': 1, \"citizen'phtgi\": 1, \"girl's\": 1, 'babies': 1, 'persons': 1, 'chicks': 1, 'infant': 1, 'gets': 1, 'has': 1, 'admits': 1, 'suck': 1, 'wait': 1, \"aren't\": 1, 'loved': 1, 'infers': 1, 'changed': 1, 'sent': 1, 'sensed': 1, 'taken': 1, \"didn't\": 1, 'post': 1, 'distanpiy': 1, 'go': 1, 'marchal': 1, 'updatmwi': 1, 'walking': 1, 'growing': 1, 'newbornl': 1, 'suspectc': 1, 'charmbrwsd': 1, 'huggpo': 1, 'wins': 1, 'generot': 1, 'helping': 1, 'sincerbucaj': 1, 'freedswu': 1, 'adventursfk': 1, 'gently': 1, 'deliciouseuxl': 1, 'assurm': 1, 'worshipstmjc': 1, 'soulmateeiya': 1, 'treat': 1, 'grin': 1, 'secret': 1, 'wealthlg': 1, 'thrillzbrqf': 1, 'casual': 1, 'proudrqu': 1, 'restructurucq': 1, 'decidux': 1, 'recallwz': 1, 'seems': 1, 'solutionlxh': 1, 'wonder': 1, 'motivsc': 1, 'sensing': 1, 'orangemacis': 1, 'ICU': 1, 'scabo': 1, 'brunchkjz': 1, 'undoubtni': 1, 'truthzhf': 1, 'distinctue': 1, 'definitiveeol': 1, 'commitmentflk': 1, 'forever': 1, 'total': 1, 'fundamentals': 1, 'guarantidjp': 1, 'inclusg': 1, 'nausen': 1, 'sensation': 1, 'saliverbwp': 1, 'altho': 1, 'liquoriole': 1, 'xanax': 1, 'prescriqd': 1, 'sodauce': 1, 'strivl': 1, 'master': 1, 'originattvf': 1, 'solutionmuyho': 1, 'elitlxoup': 1, 'proficiengiy': 1, 'quittd': 1, 'finalizuav': 1, 'however': 1, 'furniture': 1, 'capabfs': 1, 'rang': 1, 'unneedofek': 1, 'want': 1, 'wish': 1, 'unwantpotnw': 1, 'hopefulness': 1, \"couldn't\": 1, 'musilej': 1, 'listenerjp': 1, 'harmongoc': 1, 'audiblweds': 1, 'yell': 1, 'listenerpvo': 1, 'concertfuw': 1, 'bedroomxhpl': 1, 'drapeulqv': 1, 'backyard': 1, 'loveseatjproz': 1, 'closet': 1, 'curtainqygkr': 1, 'drapekwvh': 1, 'bathae': 1, 'curtainbu': 1, 'loveseatntr': 1, 'family': 1, 'housing': 1, 'rooms': 1, 'quitti': 1, 'plans': 1, 'burpzxevw': 1, 'embalmfqydb': 1, 'butts': 1, 'jeez': 1, 'sonofako': 1, 'crappy': 1, 'heck': 1, 'urnj': 1, 'immortalwai': 1, 'od': 1, 'bury': 1, 'tombd': 1, 'urnnig': 1, 'immortalyjedn': 1, 'hearsepdk': 1, 'pisstkzme': 1, 'ghostaw': 1, 'alive': 1, 'amputu': 1, 'neurologhl': 1, 'toxv': 1, 'painly': 1, 'throbgvmhn': 1, 'wash': 1, 'doselndu': 1, 'mono': 1, 'ill': 1, 'checkupfli': 1, 'dicks': 1, 'cuntn': 1, 'strengthe': 1, 'overwhelmfvlxi': 1, 'successqfhs': 1, 'herovqw': 1, 'overconfidence': 1, 'truly': 1, 'pushty': 1, 'phobii': 1, 'apprehensnmeyt': 1, 'obsesstusbg': 1, 'anguishuiy': 1, 'terrorkm': 1, 'restlesst': 1, 'tenseod': 1, 'timidfzbh': 1, 'cuntq': 1, 'stressetd': 1, 'apprehensrm': 1, 'dreadn': 1, 'oneself': 1, \"he'd\": 1, \"haven't\": 1, 'nobodashm': 1, 'never': 1, 'fuckerusz': 1, 'bitchnsl': 1, 'goddamomde': 1, 'fuckinoawys': 1, 'gianthy': 1, 'initiatoxtwa': 1, 'doghouseeastb': 1, 'follow': 1, 'meant': 1, 'hoped': 1, 'carry': 1, 'showed': 1, 'used': 1, 'theres': 1, 'care': 1, 'made': 1, 'misses': 1, 'kept': 1, 'gfjgevb': 1, 'exgirll': 1, 'mate': 1, 'loveru': 1, 'buddyv': 1, 'neighbord': 1, 'partnerzcvdj': 1, 'roomatel': 1, 'girlfriendt': 1, 'gft': 1, 'mean': 1, 'actually': 1, 'whod': 1, 'let': 1, 'ought': 1, \"wasn't\": 1, \"shan't\": 1, 'thank': 1, 'wished': 1, 'exclusxklz': 1, 'most': 1, 'driegnk': 1, 'touchlzf': 1, 'leatherjcf': 1, 'pressed': 1, 'squeezul': 1, 'silkjn': 1, 'brushtasj': 1, 'colde': 1, 'caressi': 1, 'hottjmuo': 1, 'mysterp': 1, 'ambigun': 1, 'vary': 1, 'versus': 1, 'fairly': 1, 'unresolvn': 1, 'hesitaq': 1, 'fuzznaxg': 1, 'hypotheticoqwzy': 1, 'barely': 1, 'indetermingifjl': 1, 'randomitf': 1, 'hypotheticvzkg': 1, 'supposed': 1, 'exclujvy': 1, 'somethingfxdq': 1, 'oughtve': 1, 'becomes': 1, 'done': 1, 'hushmqplh': 1, \"would've\": 1, 'problemo': 1, 'lacksuexg': 1, 'expectt': 1, 'hopeful': 1, 'desirva': 1, 'wishes': 1, 'wishing': 1, 'thundero': 1, 'thunderq': 1, 'inaudibln': 1, 'loudvh': 1, 'speak': 1, 'mistakwzl': 1, 'heard': 1, 'speakertphv': 1, 'shoutiaem': 1, 'audiblbohi': 1, 'whispervhxqk': 1, 'lawnxdi': 1, 'doghousemilk': 1, 'residenlwfxa': 1, 'vacuumk': 1, 'lawnjr': 1, 'residencpbs': 1, 'neighboregax': 1, 'hoping': 1, 'hope': 1, 'meaningi': 1, 'requirj': 1, 'wanted': 1, 'determining': 1, 'suppresshvw': 1, 'proof': 1, 'changes': 1, 'rearrangbqlg': 1, 'randomuer': 1, 'containn': 1, 'shoulds': 1, 'practically': 1, 'occasionalszxg': 1, 'hazy': 1, 'repressydvml': 1, 'tang': 1, 'ahead': 1, 'below': 1, 'under': 1, 'thru': 1, 'towardkhyrs': 1, 'between': 1, 'beside': 1, 'grabwktxr': 1, 'savourzw': 1, 'redness': 1, 'speaking': 1, 'souriau': 1, 'hardevtqef': 1, 'warmlvye': 1, 'hard': 1, 'somebodp': 1, 'missed': 1, 'unhappj': 1, \"son's\": 1, 'listenerqe': 1, 'girlfriendwsnya': 1, \"he'll\": 1, 'sisterqjtfk': 1, 'coworkertbpf': 1, 'mailing': 1, 'interrupm': 1, 'somethingjmcpi': 1, 'noboda': 1, 'somewhere': 1, 'pitiulpnv': 1, \"that'd\": 1, 'somethingosdqx': 1, 'somethingp': 1, 'someonecrhbd': 1, 'sinnzkc': 1, 'kosher': 1, \"qur'anpy\": 1, 'mercy': 1, 'templefydxz': 1, 'hinduejs': 1, 'muhammsla': 1, 'lutheranwv': 1, 'regretzkbrc': 1, 'tragickh': 1, 'catholickd': 1, 'boundlby': 1, 'hall': 1, 'bending': 1, 'widthxikw': 1, 'loverkfxo': 1, 'pornoiu': 1, 'virgindtrl': 1, 'humpysbwe': 1, 'prudishybiq': 1, 'virginc': 1, 'pubic': 1, 'prostatijvda': 1, 'curbijh': 1, 'deniaxi': 1, 'yearnlkw': 1, 'prudishxc': 1, 'deniabxp': 1, 'constrictimhr': 1, 'withholdyzaqb': 1, 'stops': 1, 'remorset': 1, 'ruinc': 1, 'grimwftle': 1, 'discouragnepqi': 1, 'tragict': 1, 'devastatu': 1, 'unimportant': 1, 'ministerlnfts': 1, 'sikhc': 1, \"I'm\": 1, 'threatxre': 1, 'wagerfv': 1, 'effectcaxgn': 1, 'leadmbhfe': 1, 'creatend': 1, 'deducgulp': 1, 'outcomecli': 1, 'hows': 1, 'producnbu': 1, 'solutionva': 1, 'launchvoap': 1, 'leadhbi': 1, 'provoku': 1, 'offencefhcog': 1, 'overtime': 1, 'ludicrouslf': 1, 'enragoqusn': 1, 'sucks': 1, 'brutals': 1, 'threatd': 1, 'destroyj': 1, 'sinister': 1, 'raping': 1, 'battliz': 1, 'warfareid': 1, 'defensjazn': 1, 'molestgv': 1, 'bucks': 1, 'mortgpzvi': 1, 'judaprfd': 1, 'classes': 1, 'muhammehcml': 1, 'sin': 1, 'laidoff': 1, 'tradejnx': 1, 'taxes': 1, 'freshmknd': 1, 'incorprhq': 1, 'negotiatjf': 1, 'presentationomwfa': 1, 'politics': 1, 'mda': 1, 'revieww': 1, 'owes': 1, 'spending': 1, 'cashk': 1, 'bankpsiar': 1, 'checks': 1, 'kronlwik': 1, 'dinarcsg': 1, 'businesszosw': 1, 'revenueocp': 1, 'costbjwta': 1, 'owe': 1, 'euro': 1, 'auditors': 1, 'store': 1, 'this?': 1}\n", + "0 0.00\n", + "1 0.20\n", + "2 0.00\n", + "3 0.00\n", + "4 0.00\n", + " ... \n", + "537 0.00\n", + "538 0.00\n", + "539 0.25\n", + "540 0.25\n", + "541 0.25\n", + "Name: content_word_accommodation, Length: 542, dtype: float64\n", + " conversation_num message\n", + "671 A able am are\n", + "672 A able am are hello\n", + "673 A able am hello\n", + "674 A able get got\n", + "675 A get\n", + "{'hello': 2}\n", + "0 0.0\n", + "1 0.0\n", + "2 0.5\n", + "3 0.0\n", + "4 0.0\n", + "Name: content_word_accommodation, dtype: float64\n", + " conversation_num message\n", + "676 B able am are\n", + "677 B able am are hello\n", + "678 B able am hello yoyo\n", + "679 B hello yoyo\n", + "{'hello': 3, 'yoyo': 2}\n", + "0 0.000000\n", + "1 0.000000\n", + "2 0.333333\n", + "3 0.833333\n", + "Name: content_word_accommodation, dtype: float64\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/var/folders/q6/rj1_hcnn4l1czvx3phrf8kbw0000gn/T/ipykernel_46302/3956377500.py:27: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame.\n", + "Try using .loc[row_indexer,col_indexer] = value instead\n", + "\n", + "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " df_conv[\"content_word_accommodation\"] = Content_mimicry_score(\n", + "/var/folders/q6/rj1_hcnn4l1czvx3phrf8kbw0000gn/T/ipykernel_46302/3956377500.py:27: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame.\n", + "Try using .loc[row_indexer,col_indexer] = value instead\n", + "\n", + "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " df_conv[\"content_word_accommodation\"] = Content_mimicry_score(\n", + "/var/folders/q6/rj1_hcnn4l1czvx3phrf8kbw0000gn/T/ipykernel_46302/3956377500.py:27: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame.\n", + "Try using .loc[row_indexer,col_indexer] = value instead\n", + "\n", + "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " df_conv[\"content_word_accommodation\"] = Content_mimicry_score(\n", + "/var/folders/q6/rj1_hcnn4l1czvx3phrf8kbw0000gn/T/ipykernel_46302/3956377500.py:27: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame.\n", + "Try using .loc[row_indexer,col_indexer] = value instead\n", + "\n", + "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " df_conv[\"content_word_accommodation\"] = Content_mimicry_score(\n", + "/var/folders/q6/rj1_hcnn4l1czvx3phrf8kbw0000gn/T/ipykernel_46302/3956377500.py:27: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame.\n", + "Try using .loc[row_indexer,col_indexer] = value instead\n", + "\n", + "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " df_conv[\"content_word_accommodation\"] = Content_mimicry_score(\n", + "/var/folders/q6/rj1_hcnn4l1czvx3phrf8kbw0000gn/T/ipykernel_46302/3956377500.py:27: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame.\n", + "Try using .loc[row_indexer,col_indexer] = value instead\n", + "\n", + "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " df_conv[\"content_word_accommodation\"] = Content_mimicry_score(\n", + "/var/folders/q6/rj1_hcnn4l1czvx3phrf8kbw0000gn/T/ipykernel_46302/3956377500.py:27: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame.\n", + "Try using .loc[row_indexer,col_indexer] = value instead\n", + "\n", + "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " df_conv[\"content_word_accommodation\"] = Content_mimicry_score(\n", + "/var/folders/q6/rj1_hcnn4l1czvx3phrf8kbw0000gn/T/ipykernel_46302/3956377500.py:27: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame.\n", + "Try using .loc[row_indexer,col_indexer] = value instead\n", + "\n", + "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " df_conv[\"content_word_accommodation\"] = Content_mimicry_score(\n", + "/var/folders/q6/rj1_hcnn4l1czvx3phrf8kbw0000gn/T/ipykernel_46302/3956377500.py:27: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame.\n", + "Try using .loc[row_indexer,col_indexer] = value instead\n", + "\n", + "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " df_conv[\"content_word_accommodation\"] = Content_mimicry_score(\n", + "/var/folders/q6/rj1_hcnn4l1czvx3phrf8kbw0000gn/T/ipykernel_46302/3956377500.py:27: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame.\n", + "Try using .loc[row_indexer,col_indexer] = value instead\n", + "\n", + "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " df_conv[\"content_word_accommodation\"] = Content_mimicry_score(\n", + "/var/folders/q6/rj1_hcnn4l1czvx3phrf8kbw0000gn/T/ipykernel_46302/3956377500.py:27: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame.\n", + "Try using .loc[row_indexer,col_indexer] = value instead\n", + "\n", + "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " df_conv[\"content_word_accommodation\"] = Content_mimicry_score(\n", + "/var/folders/q6/rj1_hcnn4l1czvx3phrf8kbw0000gn/T/ipykernel_46302/3956377500.py:27: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame.\n", + "Try using .loc[row_indexer,col_indexer] = value instead\n", + "\n", + "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " df_conv[\"content_word_accommodation\"] = Content_mimicry_score(\n", + "/var/folders/q6/rj1_hcnn4l1czvx3phrf8kbw0000gn/T/ipykernel_46302/3956377500.py:27: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame.\n", + "Try using .loc[row_indexer,col_indexer] = value instead\n", + "\n", + "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " df_conv[\"content_word_accommodation\"] = Content_mimicry_score(\n", + "/var/folders/q6/rj1_hcnn4l1czvx3phrf8kbw0000gn/T/ipykernel_46302/3956377500.py:27: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame.\n", + "Try using .loc[row_indexer,col_indexer] = value instead\n", + "\n", + "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " df_conv[\"content_word_accommodation\"] = Content_mimicry_score(\n", + "/var/folders/q6/rj1_hcnn4l1czvx3phrf8kbw0000gn/T/ipykernel_46302/3956377500.py:27: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame.\n", + "Try using .loc[row_indexer,col_indexer] = value instead\n", + "\n", + "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " df_conv[\"content_word_accommodation\"] = Content_mimicry_score(\n", + "/var/folders/q6/rj1_hcnn4l1czvx3phrf8kbw0000gn/T/ipykernel_46302/3956377500.py:27: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame.\n", + "Try using .loc[row_indexer,col_indexer] = value instead\n", + "\n", + "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " df_conv[\"content_word_accommodation\"] = Content_mimicry_score(\n", + "/var/folders/q6/rj1_hcnn4l1czvx3phrf8kbw0000gn/T/ipykernel_46302/3956377500.py:27: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame.\n", + "Try using .loc[row_indexer,col_indexer] = value instead\n", + "\n", + "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " df_conv[\"content_word_accommodation\"] = Content_mimicry_score(\n", + "/var/folders/q6/rj1_hcnn4l1czvx3phrf8kbw0000gn/T/ipykernel_46302/3956377500.py:27: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame.\n", + "Try using .loc[row_indexer,col_indexer] = value instead\n", + "\n", + "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " df_conv[\"content_word_accommodation\"] = Content_mimicry_score(\n", + "/var/folders/q6/rj1_hcnn4l1czvx3phrf8kbw0000gn/T/ipykernel_46302/3956377500.py:27: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame.\n", + "Try using .loc[row_indexer,col_indexer] = value instead\n", + "\n", + "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " df_conv[\"content_word_accommodation\"] = Content_mimicry_score(\n", + "/var/folders/q6/rj1_hcnn4l1czvx3phrf8kbw0000gn/T/ipykernel_46302/3956377500.py:27: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame.\n", + "Try using .loc[row_indexer,col_indexer] = value instead\n", + "\n", + "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " df_conv[\"content_word_accommodation\"] = Content_mimicry_score(\n", + "/var/folders/q6/rj1_hcnn4l1czvx3phrf8kbw0000gn/T/ipykernel_46302/3956377500.py:27: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame.\n", + "Try using .loc[row_indexer,col_indexer] = value instead\n", + "\n", + "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " df_conv[\"content_word_accommodation\"] = Content_mimicry_score(\n", + "/var/folders/q6/rj1_hcnn4l1czvx3phrf8kbw0000gn/T/ipykernel_46302/3956377500.py:27: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame.\n", + "Try using .loc[row_indexer,col_indexer] = value instead\n", + "\n", + "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " df_conv[\"content_word_accommodation\"] = Content_mimicry_score(\n", + "/var/folders/q6/rj1_hcnn4l1czvx3phrf8kbw0000gn/T/ipykernel_46302/3956377500.py:27: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame.\n", + "Try using .loc[row_indexer,col_indexer] = value instead\n", + "\n", + "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " df_conv[\"content_word_accommodation\"] = Content_mimicry_score(\n", + "/var/folders/q6/rj1_hcnn4l1czvx3phrf8kbw0000gn/T/ipykernel_46302/3956377500.py:27: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame.\n", + "Try using .loc[row_indexer,col_indexer] = value instead\n", + "\n", + "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " df_conv[\"content_word_accommodation\"] = Content_mimicry_score(\n", + "/var/folders/q6/rj1_hcnn4l1czvx3phrf8kbw0000gn/T/ipykernel_46302/3956377500.py:27: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame.\n", + "Try using .loc[row_indexer,col_indexer] = value instead\n", + "\n", + "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " df_conv[\"content_word_accommodation\"] = Content_mimicry_score(\n", + "/var/folders/q6/rj1_hcnn4l1czvx3phrf8kbw0000gn/T/ipykernel_46302/3956377500.py:27: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame.\n", + "Try using .loc[row_indexer,col_indexer] = value instead\n", + "\n", + "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " df_conv[\"content_word_accommodation\"] = Content_mimicry_score(\n", + "/var/folders/q6/rj1_hcnn4l1czvx3phrf8kbw0000gn/T/ipykernel_46302/3956377500.py:27: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame.\n", + "Try using .loc[row_indexer,col_indexer] = value instead\n", + "\n", + "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " df_conv[\"content_word_accommodation\"] = Content_mimicry_score(\n" + ] + }, + { + "data": { + "text/html": [ + "
                                        \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
                                        conversation_nummessagefunction_wordscontent_wordsfunction_word_mimicrycontent_word_mimicryfunction_word_accommodationcontent_word_accommodation
                                        0Bable am are[able, am, are][][][]00.000000
                                        1Bable am are hello[able, am, are][hello][able, am, are][]30.000000
                                        2Bable am hello yoyo[able, am][hello, yoyo][able, am][hello]20.000000
                                        3Bhello yoyo[][hello, yoyo][][hello, yoyo]00.000000
                                        4Aget[get][][get][]10.000000
                                        ...........................
                                        675Aget[get][][get][]10.000000
                                        676Bable am are[able, am, are][][][]00.000000
                                        677Bable am are hello[able, am, are][hello][able, am, are][]30.000000
                                        678Bable am hello yoyo[able, am][hello, yoyo][able, am][hello]20.333333
                                        679Bhello yoyo[][hello, yoyo][][hello, yoyo]00.833333
                                        \n", + "

                                        680 rows × 8 columns

                                        \n", + "
                                        " + ], + "text/plain": [ + " conversation_num message function_words content_words \\\n", + "0 B able am are [able, am, are] [] \n", + "1 B able am are hello [able, am, are] [hello] \n", + "2 B able am hello yoyo [able, am] [hello, yoyo] \n", + "3 B hello yoyo [] [hello, yoyo] \n", + "4 A get [get] [] \n", + ".. ... ... ... ... \n", + "675 A get [get] [] \n", + "676 B able am are [able, am, are] [] \n", + "677 B able am are hello [able, am, are] [hello] \n", + "678 B able am hello yoyo [able, am] [hello, yoyo] \n", + "679 B hello yoyo [] [hello, yoyo] \n", + "\n", + " function_word_mimicry content_word_mimicry function_word_accommodation \\\n", + "0 [] [] 0 \n", + "1 [able, am, are] [] 3 \n", + "2 [able, am] [hello] 2 \n", + "3 [] [hello, yoyo] 0 \n", + "4 [get] [] 1 \n", + ".. ... ... ... \n", + "675 [get] [] 1 \n", + "676 [] [] 0 \n", + "677 [able, am, are] [] 3 \n", + "678 [able, am] [hello] 2 \n", + "679 [] [hello, yoyo] 0 \n", + "\n", + " content_word_accommodation \n", + "0 0.000000 \n", + "1 0.000000 \n", + "2 0.000000 \n", + "3 0.000000 \n", + "4 0.000000 \n", + ".. ... \n", + "675 0.000000 \n", + "676 0.000000 \n", + "677 0.000000 \n", + "678 0.333333 \n", + "679 0.833333 \n", + "\n", + "[680 rows x 8 columns]" + ] + }, + "execution_count": 79, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "import pandas as pd\n", + "test_chat_df = pd.read_csv(\"./data/cleaned_data/test_chat_level.csv\")\n", + "df = test_chat_df[['conversation_num', \"message\"]].reset_index(drop=True)\n", + "df\n", + "\n", + "df[\"function_words\"] = df[\"message\"].apply(\n", + " lambda x: get_function_words_in_message(x, function_word_reference=func))\n", + "df[\"content_words\"] = df[\"message\"].apply(\n", + " lambda x: get_content_words_in_message(x, function_word_reference=func))\n", + "\n", + "# Extract the function words / content words that also appears in the immediate previous turn\n", + "df[\"function_word_mimicry\"] = mimic_words(\n", + " df, \"function_words\", \"conversation_num\")\n", + "df[\"content_word_mimicry\"] = mimic_words(\n", + " df, \"content_words\", \"conversation_num\")\n", + "\n", + "# Compute the number of function words that also appears in the immediate previous turn\n", + "df[\"function_word_accommodation\"] = df[\"function_word_mimicry\"].apply(\n", + " function_mimicry_score)\n", + "\n", + "l = []\n", + "\n", + "for conv in df[\"conversation_num\"].unique():\n", + " # print(conv)\n", + " df_conv = df[df[\"conversation_num\"] == conv]\n", + " # Compute the sum of inverse frequency of each content word that also occurred in the other’s immediately prior turn.\n", + " df_conv[\"content_word_accommodation\"] = Content_mimicry_score(\n", + " df_conv, \"content_words\", \"content_word_mimicry\")\n", + " l.append(df_conv['content_word_accommodation'].tolist())\n", + " \n", + "# flatten the list\n", + "l = [item for sublist in l for item in sublist]\n", + "l\n", + "df['content_word_accommodation'] = l\n", + "df\n" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
                                        \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
                                        conversation_numspeaker_nicknamemessageexpected_columnexpected_valuemessage_originalmessage_lower_with_puncpositive_bertnegative_bertneutral_bert...num_numbered_pointsnum_line_breaksnum_quotesnum_block_quote_responsesnum_ellipsesnum_parenthesesnum_emojimimicry_bertmoving_mimicryforward_flow
                                        01Ahello i like fishnum_words4.00000Hello I like fish.hello i like fish.0.8970700.0044840.098446...01000000.0000000.0000000.000000e+00
                                        11Bthis sentence has five wordsnum_words5.00000This sentence has five words.this sentence has five words.0.0419380.1313700.826692...01000000.1134660.1134668.865345e-01
                                        22Ahellonum_words1.00000Hello??hello??0.1380020.0538700.808129...01000000.0000000.0000000.000000e+00
                                        32Bis 4 a wordnum_words4.00000Is 4 a word?is 4 a word?0.0424290.1166170.840954...01000000.1242320.1242328.757685e-01
                                        43ANaNnum_words0.00000..0.3023180.1205070.577175...01000000.0000000.0000000.000000e+00
                                        ..................................................................
                                        1D2bought some groceries for dinnerinfo_exchange_zscore_conversation1.73205Bought some groceries for dinnerbought some groceries for dinner0.5283250.0102190.461456...01000000.3787250.3787256.212753e-01
                                        2D3its raining todayinfo_exchange_zscore_chats-1.73205It's raining todayit's raining today0.2852140.1111690.603617...01000000.1792770.2790018.309010e-01
                                        3E1i went to the storeinfo_exchange_zscore_chats0.00000I went to the storei went to the store0.2660870.0291110.704801...01000000.0000000.0000000.000000e+00
                                        4E1i went to the storeinfo_exchange_zscore_chats0.00000I went to the storei went to the store0.2660870.0291110.704802...01000001.0000001.000000-2.220446e-16
                                        5E1i went to the storeinfo_exchange_zscore_chats0.00000I went to the storei went to the store0.2660870.0291110.704802...01000001.0000001.000000-2.220446e-16
                                        \n", + "

                                        695 rows × 160 columns

                                        \n", + "
                                        " + ], + "text/plain": [ + " conversation_num speaker_nickname message \\\n", + "0 1 A hello i like fish \n", + "1 1 B this sentence has five words \n", + "2 2 A hello \n", + "3 2 B is 4 a word \n", + "4 3 A NaN \n", + ".. ... ... ... \n", + "1 D 2 bought some groceries for dinner \n", + "2 D 3 its raining today \n", + "3 E 1 i went to the store \n", + "4 E 1 i went to the store \n", + "5 E 1 i went to the store \n", + "\n", + " expected_column expected_value \\\n", + "0 num_words 4.00000 \n", + "1 num_words 5.00000 \n", + "2 num_words 1.00000 \n", + "3 num_words 4.00000 \n", + "4 num_words 0.00000 \n", + ".. ... ... \n", + "1 info_exchange_zscore_conversation 1.73205 \n", + "2 info_exchange_zscore_chats -1.73205 \n", + "3 info_exchange_zscore_chats 0.00000 \n", + "4 info_exchange_zscore_chats 0.00000 \n", + "5 info_exchange_zscore_chats 0.00000 \n", + "\n", + " message_original message_lower_with_punc \\\n", + "0 Hello I like fish. hello i like fish. \n", + "1 This sentence has five words. this sentence has five words. \n", + "2 Hello?? hello?? \n", + "3 Is 4 a word? is 4 a word? \n", + "4 . . \n", + ".. ... ... \n", + "1 Bought some groceries for dinner bought some groceries for dinner \n", + "2 It's raining today it's raining today \n", + "3 I went to the store i went to the store \n", + "4 I went to the store i went to the store \n", + "5 I went to the store i went to the store \n", + "\n", + " positive_bert negative_bert neutral_bert ... num_numbered_points \\\n", + "0 0.897070 0.004484 0.098446 ... 0 \n", + "1 0.041938 0.131370 0.826692 ... 0 \n", + "2 0.138002 0.053870 0.808129 ... 0 \n", + "3 0.042429 0.116617 0.840954 ... 0 \n", + "4 0.302318 0.120507 0.577175 ... 0 \n", + ".. ... ... ... ... ... \n", + "1 0.528325 0.010219 0.461456 ... 0 \n", + "2 0.285214 0.111169 0.603617 ... 0 \n", + "3 0.266087 0.029111 0.704801 ... 0 \n", + "4 0.266087 0.029111 0.704802 ... 0 \n", + "5 0.266087 0.029111 0.704802 ... 0 \n", + "\n", + " num_line_breaks num_quotes num_block_quote_responses num_ellipses \\\n", + "0 1 0 0 0 \n", + "1 1 0 0 0 \n", + "2 1 0 0 0 \n", + "3 1 0 0 0 \n", + "4 1 0 0 0 \n", + ".. ... ... ... ... \n", + "1 1 0 0 0 \n", + "2 1 0 0 0 \n", + "3 1 0 0 0 \n", + "4 1 0 0 0 \n", + "5 1 0 0 0 \n", + "\n", + " num_parentheses num_emoji mimicry_bert moving_mimicry forward_flow \n", + "0 0 0 0.000000 0.000000 0.000000e+00 \n", + "1 0 0 0.113466 0.113466 8.865345e-01 \n", + "2 0 0 0.000000 0.000000 0.000000e+00 \n", + "3 0 0 0.124232 0.124232 8.757685e-01 \n", + "4 0 0 0.000000 0.000000 0.000000e+00 \n", + ".. ... ... ... ... ... \n", + "1 0 0 0.378725 0.378725 6.212753e-01 \n", + "2 0 0 0.179277 0.279001 8.309010e-01 \n", + "3 0 0 0.000000 0.000000 0.000000e+00 \n", + "4 0 0 1.000000 1.000000 -2.220446e-16 \n", + "5 0 0 1.000000 1.000000 -2.220446e-16 \n", + "\n", + "[695 rows x 160 columns]" + ] + }, + "execution_count": 2, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "import pandas as pd\n", + "test_chat_df = pd.read_csv(\"./output/chat/test_chat_level_chat.csv\")\n", + "test_info_exchange_zscore_df = pd.read_csv(\"./output/chat/info_exchange_zscore_chats.csv\")\n", + "pd.concat([test_chat_df, test_info_exchange_zscore_df], axis=0)" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "['-', '-']" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "import pandas as pd\n", + "import re\n", + "import nltk\n", + "import pyphen\n", + "\n", + "# Define the function to calculate the Dale-Chall score\n", + "def count_syllables(word):\n", + " \"\"\"\n", + " Count the number of syllables in a word.\n", + " \n", + " Args:\n", + " word(str): The input word.\n", + "\n", + " Returns:\n", + " int: The number of syllables in the word.\n", + " \"\"\"\n", + " dic = pyphen.Pyphen(lang='en')\n", + " pyphen_result = dic.inserted(word)\n", + " return re.findall(r\"-\", pyphen_result)\n", + "\n", + "count_syllables(\"difficulty\")" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "4" + ] + }, + "execution_count": 9, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "import re\n", + "\n", + "VOWEL_RUNS = re.compile(\"[aeiouy]+\", flags=re.I)\n", + "EXCEPTIONS = re.compile(\n", + " # fixes trailing e issues:\n", + " # smite, scared\n", + " \"[^aeiou]e[sd]?$|\"\n", + " # fixes adverbs:\n", + " # nicely\n", + " + \"[^e]ely$\",\n", + " flags=re.I\n", + ")\n", + "ADDITIONAL = re.compile(\n", + " # fixes incorrect subtractions from exceptions:\n", + " # smile, scarred, raises, fated\n", + " \"[^aeioulr][lr]e[sd]?$|[csgz]es$|[td]ed$|\"\n", + " # fixes miscellaneous issues:\n", + " # flying, piano, video, prism, fire, evaluate\n", + " + \".y[aeiou]|ia(?!n$)|eo|ism$|[^aeiou]ire$|[^gq]ua\",\n", + " flags=re.I\n", + ")\n", + "\n", + "def count_syllables(word):\n", + " vowel_runs = len(VOWEL_RUNS.findall(word))\n", + " exceptions = len(EXCEPTIONS.findall(word))\n", + " additional = len(ADDITIONAL.findall(word))\n", + " return max(1, vowel_runs - exceptions + additional)\n", + "\n", + "count_syllables(\"difficulty\")" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "2" + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "import re\n", + "text = \"even this is magnificent! even this is magnificent!\"\n", + "num_words = len(text.split())\n", + "num_sentences = re.split(r'[.?!]\\s*', text)\n", + "\n", + "# remove empty strings\n", + "num_sentences = [x for x in num_sentences if x]\n", + "len(num_sentences)" + ] + }, + { + "cell_type": "code", + "execution_count": 35, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\\bi\\b|\\bme\\b|\\bmy\\b|\\bmine\\b|\\bwe\\b|\\bus\\b|\\bour\\b|\\bours\\b\n" + ] + }, + { + "data": { + "text/plain": [ + "[]" + ] + }, + "execution_count": 35, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "import re\n", + "first_person = [\"i\", \"me\", \"my\", \"mine\", \"we\", \"us\", \"our\", \"ours\"]\n", + "first_person_regex = \"\\\\b|\\\\b\".join(first_person)\n", + "first_person_regex = \"\\\\b\" + first_person_regex + \"\\\\b\"\n", + "print(first_person_regex)\n", + "re.findall(first_person_regex, \"hiii\")\n" + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "Timestamp('2023-01-15 00:00:00')" + ] + }, + "execution_count": 19, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "import pandas as pd\n", + "\n", + "text = \"2023-Jan-15\"\n", + "pd.to_datetime(text)" + ] + }, + { + "cell_type": "code", + "execution_count": 41, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "0 0.0\n", + "1 1.0\n", + "2 0.0\n", + "3 5.0\n", + "4 1.0\n", + "Name: time_diff, dtype: float64" + ] + }, + "execution_count": 41, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "pd.read_csv(\"./output/chat/test_temporal_level_chat.csv\")['time_diff']" + ] + }, + { + "cell_type": "code", + "execution_count": 32, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/var/folders/q6/rj1_hcnn4l1czvx3phrf8kbw0000gn/T/ipykernel_6204/2972292266.py:1: FutureWarning: The behavior of 'to_datetime' with 'unit' when parsing strings is deprecated. In a future version, strings will be parsed as datetime strings, matching the behavior without a 'unit'. To retain the old behavior, explicitly cast ints or floats to numeric type before calling to_datetime.\n", + " pd.to_datetime(\"5\", unit=\"ms\")\n" + ] + }, + { + "data": { + "text/plain": [ + "Timestamp('1970-01-01 00:00:00.005000')" + ] + }, + "execution_count": 32, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "pd.to_datetime(\"5\", unit=\"ms\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "0 2023-01-15\n", + "1 NaT\n", + "2 NaT\n", + "3 NaT\n", + "4 NaT\n", + "Name: timestamp, dtype: datetime64[ns]" + ] + }, + "execution_count": 23, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "pd.to_datetime(pd.read_csv(\"./data/cleaned_data/temporal.csv\")['timestamp'], errors=\"coerce\")\n", + "\n", + "\n", + "# A,A,2023-01-15,hello,time_diff,0\n", + "# A,A,2023-01-16,hello,time_diff,86400\n", + "# A,A,2023-01-17,hello,time_diff,86400\n", + "# A,A,2023-01-18,hello,time_diff,86400\n", + "# A,A,2023-01-19,hello,time_diff,86400\n", + "# B,A,2023-01-15,hello,time_diff,0\n", + "# B,A,2023-01-15,hello,time_diff,0\n", + "# B,A,2023-01-16,hello,time_diff,86400\n", + "# B,A,2023-01-18,hello,time_diff,172800\n", + "# B,A,2023-01-19,hello,time_diff,86400" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "chat_df = pd.read_csv(\"./data/cleaned_data/test_chat_level.csv\")\n", + "chat_df[\"timestamp\"] = \"2024-11-04\"\n", + "chat_df[['conversation_num', 'speaker_nickname', 'timestamp', 'message', 'expected_column', 'expected_value']].to_csv(\"./data/cleaned_data/test_chat_level.csv\", index=False)" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [ + { + "ename": "FileNotFoundError", + "evalue": "[Errno 2] No such file or directory: './data/cleaned_data/test_chat_level.csv'", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mFileNotFoundError\u001b[0m Traceback (most recent call last)", + "Cell \u001b[0;32mIn[2], line 2\u001b[0m\n\u001b[1;32m 1\u001b[0m \u001b[38;5;28;01mimport\u001b[39;00m \u001b[38;5;21;01mpandas\u001b[39;00m \u001b[38;5;28;01mas\u001b[39;00m \u001b[38;5;21;01mpd\u001b[39;00m\n\u001b[0;32m----> 2\u001b[0m chat_df \u001b[38;5;241m=\u001b[39m \u001b[43mpd\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mread_csv\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[38;5;124;43m./data/cleaned_data/test_chat_level.csv\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[43m)\u001b[49m\n\u001b[1;32m 3\u001b[0m chat_df[\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124munit\u001b[39m\u001b[38;5;124m\"\u001b[39m] \u001b[38;5;241m=\u001b[39m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124ms\u001b[39m\u001b[38;5;124m\"\u001b[39m\n\u001b[1;32m 4\u001b[0m chat_df\u001b[38;5;241m.\u001b[39mto_csv(\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124m./data/cleaned_data/test_chat_level.csv\u001b[39m\u001b[38;5;124m\"\u001b[39m, index\u001b[38;5;241m=\u001b[39m\u001b[38;5;28;01mFalse\u001b[39;00m)\n", + "File \u001b[0;32m~/Downloads/team-process-map/venv/lib/python3.12/site-packages/pandas/io/parsers/readers.py:1026\u001b[0m, in \u001b[0;36mread_csv\u001b[0;34m(filepath_or_buffer, sep, delimiter, header, names, index_col, usecols, dtype, engine, converters, true_values, false_values, skipinitialspace, skiprows, skipfooter, nrows, na_values, keep_default_na, na_filter, verbose, skip_blank_lines, parse_dates, infer_datetime_format, keep_date_col, date_parser, date_format, dayfirst, cache_dates, iterator, chunksize, compression, thousands, decimal, lineterminator, quotechar, quoting, doublequote, escapechar, comment, encoding, encoding_errors, dialect, on_bad_lines, delim_whitespace, low_memory, memory_map, float_precision, storage_options, dtype_backend)\u001b[0m\n\u001b[1;32m 1013\u001b[0m kwds_defaults \u001b[38;5;241m=\u001b[39m _refine_defaults_read(\n\u001b[1;32m 1014\u001b[0m dialect,\n\u001b[1;32m 1015\u001b[0m delimiter,\n\u001b[0;32m (...)\u001b[0m\n\u001b[1;32m 1022\u001b[0m dtype_backend\u001b[38;5;241m=\u001b[39mdtype_backend,\n\u001b[1;32m 1023\u001b[0m )\n\u001b[1;32m 1024\u001b[0m kwds\u001b[38;5;241m.\u001b[39mupdate(kwds_defaults)\n\u001b[0;32m-> 1026\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[43m_read\u001b[49m\u001b[43m(\u001b[49m\u001b[43mfilepath_or_buffer\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mkwds\u001b[49m\u001b[43m)\u001b[49m\n", + "File \u001b[0;32m~/Downloads/team-process-map/venv/lib/python3.12/site-packages/pandas/io/parsers/readers.py:620\u001b[0m, in \u001b[0;36m_read\u001b[0;34m(filepath_or_buffer, kwds)\u001b[0m\n\u001b[1;32m 617\u001b[0m _validate_names(kwds\u001b[38;5;241m.\u001b[39mget(\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mnames\u001b[39m\u001b[38;5;124m\"\u001b[39m, \u001b[38;5;28;01mNone\u001b[39;00m))\n\u001b[1;32m 619\u001b[0m \u001b[38;5;66;03m# Create the parser.\u001b[39;00m\n\u001b[0;32m--> 620\u001b[0m parser \u001b[38;5;241m=\u001b[39m \u001b[43mTextFileReader\u001b[49m\u001b[43m(\u001b[49m\u001b[43mfilepath_or_buffer\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43mkwds\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 622\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m chunksize \u001b[38;5;129;01mor\u001b[39;00m iterator:\n\u001b[1;32m 623\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m parser\n", + "File \u001b[0;32m~/Downloads/team-process-map/venv/lib/python3.12/site-packages/pandas/io/parsers/readers.py:1620\u001b[0m, in \u001b[0;36mTextFileReader.__init__\u001b[0;34m(self, f, engine, **kwds)\u001b[0m\n\u001b[1;32m 1617\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39moptions[\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mhas_index_names\u001b[39m\u001b[38;5;124m\"\u001b[39m] \u001b[38;5;241m=\u001b[39m kwds[\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mhas_index_names\u001b[39m\u001b[38;5;124m\"\u001b[39m]\n\u001b[1;32m 1619\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mhandles: IOHandles \u001b[38;5;241m|\u001b[39m \u001b[38;5;28;01mNone\u001b[39;00m \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;01mNone\u001b[39;00m\n\u001b[0;32m-> 1620\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_engine \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_make_engine\u001b[49m\u001b[43m(\u001b[49m\u001b[43mf\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mengine\u001b[49m\u001b[43m)\u001b[49m\n", + "File \u001b[0;32m~/Downloads/team-process-map/venv/lib/python3.12/site-packages/pandas/io/parsers/readers.py:1880\u001b[0m, in \u001b[0;36mTextFileReader._make_engine\u001b[0;34m(self, f, engine)\u001b[0m\n\u001b[1;32m 1878\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mb\u001b[39m\u001b[38;5;124m\"\u001b[39m \u001b[38;5;129;01mnot\u001b[39;00m \u001b[38;5;129;01min\u001b[39;00m mode:\n\u001b[1;32m 1879\u001b[0m mode \u001b[38;5;241m+\u001b[39m\u001b[38;5;241m=\u001b[39m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mb\u001b[39m\u001b[38;5;124m\"\u001b[39m\n\u001b[0;32m-> 1880\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mhandles \u001b[38;5;241m=\u001b[39m \u001b[43mget_handle\u001b[49m\u001b[43m(\u001b[49m\n\u001b[1;32m 1881\u001b[0m \u001b[43m \u001b[49m\u001b[43mf\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1882\u001b[0m \u001b[43m \u001b[49m\u001b[43mmode\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1883\u001b[0m \u001b[43m \u001b[49m\u001b[43mencoding\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43moptions\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mget\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[38;5;124;43mencoding\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;28;43;01mNone\u001b[39;49;00m\u001b[43m)\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1884\u001b[0m \u001b[43m \u001b[49m\u001b[43mcompression\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43moptions\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mget\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[38;5;124;43mcompression\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;28;43;01mNone\u001b[39;49;00m\u001b[43m)\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1885\u001b[0m \u001b[43m \u001b[49m\u001b[43mmemory_map\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43moptions\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mget\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[38;5;124;43mmemory_map\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;28;43;01mFalse\u001b[39;49;00m\u001b[43m)\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1886\u001b[0m \u001b[43m \u001b[49m\u001b[43mis_text\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mis_text\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1887\u001b[0m \u001b[43m \u001b[49m\u001b[43merrors\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43moptions\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mget\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[38;5;124;43mencoding_errors\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[38;5;124;43mstrict\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[43m)\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1888\u001b[0m \u001b[43m \u001b[49m\u001b[43mstorage_options\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43moptions\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mget\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[38;5;124;43mstorage_options\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;28;43;01mNone\u001b[39;49;00m\u001b[43m)\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1889\u001b[0m \u001b[43m\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 1890\u001b[0m \u001b[38;5;28;01massert\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mhandles \u001b[38;5;129;01mis\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m \u001b[38;5;28;01mNone\u001b[39;00m\n\u001b[1;32m 1891\u001b[0m f \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mhandles\u001b[38;5;241m.\u001b[39mhandle\n", + "File \u001b[0;32m~/Downloads/team-process-map/venv/lib/python3.12/site-packages/pandas/io/common.py:873\u001b[0m, in \u001b[0;36mget_handle\u001b[0;34m(path_or_buf, mode, encoding, compression, memory_map, is_text, errors, storage_options)\u001b[0m\n\u001b[1;32m 868\u001b[0m \u001b[38;5;28;01melif\u001b[39;00m \u001b[38;5;28misinstance\u001b[39m(handle, \u001b[38;5;28mstr\u001b[39m):\n\u001b[1;32m 869\u001b[0m \u001b[38;5;66;03m# Check whether the filename is to be opened in binary mode.\u001b[39;00m\n\u001b[1;32m 870\u001b[0m \u001b[38;5;66;03m# Binary mode does not support 'encoding' and 'newline'.\u001b[39;00m\n\u001b[1;32m 871\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m ioargs\u001b[38;5;241m.\u001b[39mencoding \u001b[38;5;129;01mand\u001b[39;00m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mb\u001b[39m\u001b[38;5;124m\"\u001b[39m \u001b[38;5;129;01mnot\u001b[39;00m \u001b[38;5;129;01min\u001b[39;00m ioargs\u001b[38;5;241m.\u001b[39mmode:\n\u001b[1;32m 872\u001b[0m \u001b[38;5;66;03m# Encoding\u001b[39;00m\n\u001b[0;32m--> 873\u001b[0m handle \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;43mopen\u001b[39;49m\u001b[43m(\u001b[49m\n\u001b[1;32m 874\u001b[0m \u001b[43m \u001b[49m\u001b[43mhandle\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 875\u001b[0m \u001b[43m \u001b[49m\u001b[43mioargs\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mmode\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 876\u001b[0m \u001b[43m \u001b[49m\u001b[43mencoding\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mioargs\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mencoding\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 877\u001b[0m \u001b[43m \u001b[49m\u001b[43merrors\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43merrors\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 878\u001b[0m \u001b[43m \u001b[49m\u001b[43mnewline\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[43m,\u001b[49m\n\u001b[1;32m 879\u001b[0m \u001b[43m \u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 880\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n\u001b[1;32m 881\u001b[0m \u001b[38;5;66;03m# Binary mode\u001b[39;00m\n\u001b[1;32m 882\u001b[0m handle \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mopen\u001b[39m(handle, ioargs\u001b[38;5;241m.\u001b[39mmode)\n", + "\u001b[0;31mFileNotFoundError\u001b[0m: [Errno 2] No such file or directory: './data/cleaned_data/test_chat_level.csv'" + ] + } + ], + "source": [ + "import pandas as pd\n", + "chat_df = pd.read_csv(\"./data/cleaned_data/test_chat_level.csv\")\n", + "chat_df[\"unit\"] = \"s\"\n", + "chat_df.to_csv(\"./data/cleaned_data/test_chat_level.csv\", index=False)" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "venv", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.12.3" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/tests/run_tests.py b/tests/run_tests.py index c15eaaba..1391acd0 100644 --- a/tests/run_tests.py +++ b/tests/run_tests.py @@ -28,12 +28,17 @@ conv_complex_df = pd.read_csv("data/cleaned_data/test_conv_level_complex.csv", encoding=chat_encoding['encoding']) test_forward_flow_df = pd.read_csv("data/cleaned_data/fflow.csv", encoding=chat_encoding['encoding']) conv_complex_timestamps_df = pd.read_csv("data/cleaned_data/test_conv_level_complex_timestamps.csv", encoding=chat_encoding['encoding']) - + timediff_datetime = pd.read_csv("data/cleaned_data/test_timediff_datetime.csv", encoding=chat_encoding['encoding']) + timediff_numeric = pd.read_csv("data/cleaned_data/test_timediff_numeric.csv", encoding=chat_encoding['encoding']) + timediff_numeric_unit = pd.read_csv("data/cleaned_data/test_timediff_numeric_unit.csv", encoding=chat_encoding['encoding']) + time_pairs_datetime = pd.read_csv("data/cleaned_data/test_time_pairs_datetime.csv", encoding=chat_encoding['encoding']) + time_pairs_numeric = pd.read_csv("data/cleaned_data/test_time_pairs_numeric.csv", encoding=chat_encoding['encoding']) + time_pairs_numeric_unit = pd.read_csv("data/cleaned_data/test_time_pairs_numeric_unit.csv", encoding=chat_encoding['encoding']) positivity_zscore = pd.read_csv("data/cleaned_data/positivity_zscore_chats.csv", encoding=chat_encoding['encoding']) - # TESTING DATASETS ------------------------------- + # testing positivity zscore test_positivity = FeatureBuilder( input_df = positivity_zscore, vector_directory = "./vector_data/", @@ -47,10 +52,125 @@ "Discursive Diversity" ], turns = False, - regenerate_vectors = True + regenerate_vectors = True, ) test_positivity.featurize() + + # testing timediff datetime + testing_timediff_datetime = FeatureBuilder( + input_df = timediff_datetime, + vector_directory = "./vector_data/", + output_file_path_chat_level = "./output/chat/test_timediff_dt_level_chat.csv", + output_file_path_user_level = "./output/user/test_timediff_dt_user.csv", + output_file_path_conv_level = "./output/conv/test_timediff_dt_conv.csv", + custom_features = [ # these require vect_data, so they now need to be explicitly included in order to calculate them + "(BERT) Mimicry", + "Moving Mimicry", + "Forward Flow", + "Discursive Diversity" + ], + turns = False, + regenerate_vectors = True, + ) + testing_timediff_datetime.featurize() + + # testing timediff numeric + testing_timediff_numeric = FeatureBuilder( + input_df = timediff_numeric, + vector_directory = "./vector_data/", + output_file_path_chat_level = "./output/chat/test_timediff_num_level_chat.csv", + output_file_path_user_level = "./output/user/test_timediff_num_user.csv", + output_file_path_conv_level = "./output/conv/test_timediff_num_conv.csv", + custom_features = [ # these require vect_data, so they now need to be explicitly included in order to calculate them + "(BERT) Mimicry", + "Moving Mimicry", + "Forward Flow", + "Discursive Diversity" + ], + turns = False, + regenerate_vectors = True, + ) + testing_timediff_numeric.featurize() + + + # testing timediff numeric with unit parameter + testing_timediff_numeric_unit = FeatureBuilder( + input_df = timediff_numeric_unit, + vector_directory = "./vector_data/", + output_file_path_chat_level = "./output/chat/test_timediff_num_unit_level_chat.csv", + output_file_path_user_level = "./output/user/test_timediff_num_unit_user.csv", + output_file_path_conv_level = "./output/conv/test_timediff_num_unit_conv.csv", + custom_features = [ # these require vect_data, so they now need to be explicitly included in order to calculate them + "(BERT) Mimicry", + "Moving Mimicry", + "Forward Flow", + "Discursive Diversity" + ], + turns = False, + regenerate_vectors = True, + timestamp_unit = 'h' + ) + testing_timediff_numeric_unit.featurize() + + # testing time pairs datetime + testing_time_pairs_datetime = FeatureBuilder( + input_df = time_pairs_datetime, + vector_directory = "./vector_data/", + output_file_path_chat_level = "./output/chat/test_time_pairs_dt_level_chat.csv", + output_file_path_user_level = "./output/user/test_time_pairs_dt_user.csv", + output_file_path_conv_level = "./output/conv/test_time_pairs_dt_conv.csv", + custom_features = [ # these require vect_data, so they now need to be explicitly included in order to calculate them + "(BERT) Mimicry", + "Moving Mimicry", + "Forward Flow", + "Discursive Diversity" + ], + turns = False, + regenerate_vectors = True, + timestamp_col=("timestamp_start", "timestamp_end") + ) + testing_time_pairs_datetime.featurize() + + # testing time pairs numeric + testing_time_pairs_numeric = FeatureBuilder( + input_df = time_pairs_numeric, + vector_directory = "./vector_data/", + output_file_path_chat_level = "./output/chat/test_time_pairs_num_level_chat.csv", + output_file_path_user_level = "./output/user/test_time_pairs_num_user.csv", + output_file_path_conv_level = "./output/conv/test_time_pairs_num_conv.csv", + custom_features = [ # these require vect_data, so they now need to be explicitly included in order to calculate them + "(BERT) Mimicry", + "Moving Mimicry", + "Forward Flow", + "Discursive Diversity" + ], + turns = False, + regenerate_vectors = True, + timestamp_col=("timestamp_start", "timestamp_end") + ) + testing_time_pairs_numeric.featurize() + + # testing time pairs numeric unit + testing_time_pairs_numeric_unit = FeatureBuilder( + input_df = time_pairs_numeric_unit, + vector_directory = "./vector_data/", + output_file_path_chat_level = "./output/chat/test_time_pairs_num_unit_level_chat.csv", + output_file_path_user_level = "./output/user/test_time_pairs_num_unit_user.csv", + output_file_path_conv_level = "./output/conv/test_time_pairs_num_unit_conv.csv", + custom_features = [ # these require vect_data, so they now need to be explicitly included in order to calculate them + "(BERT) Mimicry", + "Moving Mimicry", + "Forward Flow", + "Discursive Diversity" + ], + turns = False, + regenerate_vectors = True, + timestamp_col=("timestamp_start", "timestamp_end"), + timestamp_unit = 's' + ) + testing_time_pairs_numeric_unit.featurize() + # general chat level features testing_chat = FeatureBuilder( input_df = chat_df, vector_directory = "./vector_data/", @@ -58,11 +178,11 @@ output_file_path_user_level = "./output/user/test_chat_level_user.csv", output_file_path_conv_level = "./output/conv/test_chat_level_conv.csv", custom_features = [ # these require vect_data, so they now need to be explicitly included in order to calculate them - "(BERT) Mimicry", - "Moving Mimicry", - "Forward Flow", - "Discursive Diversity" - ], + "(BERT) Mimicry", + "Moving Mimicry", + "Forward Flow", + "Discursive Diversity" + ], turns = False, regenerate_vectors = True ) @@ -75,11 +195,11 @@ output_file_path_user_level = "./output/user/info_exchange_zscore_chats.csv", output_file_path_conv_level = "./output/conv/info_exchange_zscore_chats.csv", custom_features = [ # these require vect_data, so they now need to be explicitly included in order to calculate them - "(BERT) Mimicry", - "Moving Mimicry", - "Forward Flow", - "Discursive Diversity" - ], + "(BERT) Mimicry", + "Moving Mimicry", + "Forward Flow", + "Discursive Diversity" + ], turns = False, regenerate_vectors = True ) @@ -92,13 +212,14 @@ output_file_path_user_level = "./output/user/test_conv_level_user.csv", output_file_path_conv_level = "./output/conv/test_conv_level_conv.csv", custom_features = [ - "(BERT) Mimicry", - "Moving Mimicry", - "Forward Flow", - "Discursive Diversity" - ], + "(BERT) Mimicry", + "Moving Mimicry", + "Forward Flow", + "Discursive Diversity" + ], turns = False, - regenerate_vectors = True + regenerate_vectors = True, + timestamp_col="timestamp" ) testing_conv.featurize() @@ -110,11 +231,11 @@ output_file_path_user_level = "./output/user/test_named_entity_user_level.csv", output_file_path_conv_level = "./output/conv/test_named_entity_conversation_level.csv", custom_features = [ - "(BERT) Mimicry", - "Moving Mimicry", - "Forward Flow", - "Discursive Diversity" - ], + "(BERT) Mimicry", + "Moving Mimicry", + "Forward Flow", + "Discursive Diversity" + ], turns = False, regenerate_vectors = True ) @@ -128,11 +249,11 @@ output_file_path_user_level = "./output/user/test_chat_level_user_complex.csv", output_file_path_conv_level = "./output/conv/test_chat_level_conv_complex.csv", custom_features = [ - "(BERT) Mimicry", - "Moving Mimicry", - "Forward Flow", - "Discursive Diversity" - ], + "(BERT) Mimicry", + "Moving Mimicry", + "Forward Flow", + "Discursive Diversity" + ], turns = False, regenerate_vectors = True ) @@ -146,11 +267,11 @@ output_file_path_user_level = "./output/user/test_conv_level_user_complex.csv", output_file_path_conv_level = "./output/conv/test_conv_level_conv_complex.csv", custom_features = [ - "(BERT) Mimicry", - "Moving Mimicry", - "Forward Flow", - "Discursive Diversity" - ], + "(BERT) Mimicry", + "Moving Mimicry", + "Forward Flow", + "Discursive Diversity" + ], turns = False, regenerate_vectors = True ) @@ -163,11 +284,11 @@ output_file_path_user_level = "./output/user/test_conv_level_user_complex_ts.csv", output_file_path_conv_level = "./output/conv/test_conv_level_conv_complex_ts.csv", custom_features = [ - "(BERT) Mimicry", - "Moving Mimicry", - "Forward Flow", - "Discursive Diversity" - ], + "(BERT) Mimicry", + "Moving Mimicry", + "Forward Flow", + "Discursive Diversity" + ], turns = False, regenerate_vectors = True ) diff --git a/tests/test_feature_metrics.py b/tests/test_feature_metrics.py index 4a233dc6..53a9e7c9 100644 --- a/tests/test_feature_metrics.py +++ b/tests/test_feature_metrics.py @@ -7,9 +7,16 @@ import itertools test_chat_df = pd.read_csv("./output/chat/test_chat_level_chat.csv") + +test_timediff_dt = pd.read_csv("./output/chat/test_timediff_dt_level_chat.csv") +test_timediff_numeric = pd.read_csv("./output/chat/test_timediff_num_level_chat.csv") +test_timediff_numeric_unit = pd.read_csv("./output/chat/test_timediff_num_unit_level_chat.csv") +test_time_pairs_dt = pd.read_csv("./output/chat/test_time_pairs_dt_level_chat.csv") +test_time_pairs_numeric = pd.read_csv("./output/chat/test_time_pairs_num_level_chat.csv") +test_time_pairs_numeric_unit = pd.read_csv("./output/chat/test_time_pairs_num_unit_level_chat.csv") test_info_exchange_zscore_df = pd.read_csv("./output/chat/info_exchange_zscore_chats.csv") test_pos = pd.read_csv("./output/chat/test_positivity_chat_level.csv") -test_chat_df = pd.concat([test_chat_df, test_info_exchange_zscore_df, test_pos], axis=0) + test_conv_df = pd.read_csv("./output/conv/test_conv_level_conv.csv") test_chat_complex_df = pd.read_csv( "./output/chat/test_chat_level_chat_complex.csv") @@ -18,6 +25,7 @@ test_conv_complex_df_ts = pd.read_csv( "./output/conv/test_conv_level_conv_complex_ts.csv") test_forward_flow_df = pd.read_csv("./output/chat/test_forward_flow_chat.csv") +test_ner = pd.read_csv('./output/chat/test_named_entity_chat_level.csv') # Import the Feature Dictionary @@ -29,35 +37,32 @@ num_features_chat = len(list(itertools.chain(*chat_features))) num_features_conv = len(list(itertools.chain(*conversation_features))) - -num_tested_chat = test_chat_df['expected_column'].nunique( -) + test_chat_complex_df['feature'].nunique() + test_forward_flow_df['feature'].nunique() -test_chat = test_chat_df['expected_column'] + \ - test_chat_complex_df['feature'] + test_forward_flow_df['feature'] -tested_chat = set(test_chat.tolist()) - - +# Print the test coverage +num_tested_chat = test_chat_df['expected_column'].nunique() + test_chat_complex_df['feature'].nunique() + test_forward_flow_df['feature'].nunique() +test_chat = test_chat_df['expected_column'].unique().tolist() + test_chat_complex_df['feature'].unique().tolist() + \ + test_forward_flow_df['feature'].unique().tolist() + ["named_entities"] + ["time_diff"] +tested_chat = len(set(test_chat)) num_tested_conv = len(set(test_conv_df['expected_column'].unique().tolist() + test_conv_complex_df['feature'].unique().tolist())) - tested_features = {} - with open('test.log', 'w') as f: - f.write(f'Tested {num_tested_chat} features out of {num_features_chat} chat level features: {num_tested_chat/num_features_chat * 100:.2f}% Coverage!\n') + f.write(f'Tested {tested_chat} features out of {num_features_chat} chat level features: {tested_chat/num_features_chat * 100:.2f}% Coverage!\n') f.write(f'Tested {num_tested_conv} features out of {num_features_conv} conv level features: {num_tested_conv/num_features_conv * 100:.2f}% Coverage!\n') pass -# generate coverage for tests +# ---- MAIN TESTS ------ +main_tests = [test_chat_df, test_timediff_dt, test_timediff_numeric, test_timediff_numeric_unit, test_time_pairs_dt, test_time_pairs_numeric, test_time_pairs_numeric_unit, test_info_exchange_zscore_df, test_pos] +@pytest.mark.parametrize("df", main_tests) +def test_chat_unit_equality(df): + for row in df.iterrows(): + actual = row[1][row[1]['expected_column']] + expected = row[1]['expected_value'] -@pytest.mark.parametrize("row", test_chat_df.iterrows()) -def test_chat_unit_equality(row): - actual = row[1][row[1]['expected_column']] - expected = row[1]['expected_value'] + # if expected_column doesn't exist in tested_features, add an entry for it + if row[1]['expected_column'] not in tested_features: + tested_features[row[1]['expected_column']] = {'passed': 0, 'failed': 0} - # if expected_column doesn't exist in tested_features, add an entry for it - if row[1]['expected_column'] not in tested_features: - tested_features[row[1]['expected_column']] = {'passed': 0, 'failed': 0} try: if (pd.isnull(actual) and pd.isnull(expected)): assert True @@ -67,7 +72,6 @@ def test_chat_unit_equality(row): assert round(float(actual), 3) == round(float(expected), 3) tested_features[row[1]['expected_column']]['passed'] += 1 except AssertionError: - tested_features[row[1]['expected_column']]['failed'] += 1 with open('test.log', 'a') as file: file.write("\n") @@ -77,11 +81,9 @@ def test_chat_unit_equality(row): file.write(f"Expected value: {expected}\n") file.write(f"Actual value: {actual}\n") + raise AssertionError # Re-raise the AssertionError to mark the test as failed -test_ner = pd.read_csv('./output/chat/test_named_entity_chat_level.csv') tested_features['Named Entity Recognition'] = {'passed': 0, 'failed': 0} - - @pytest.mark.parametrize("row", test_ner.iterrows()) def test_named_entity_recognition(row): @@ -131,7 +133,7 @@ def test_named_entity_recognition(row): file.write(f"Expected value: {expected}\n") file.write(f"Actual value: {actual}\n") - # raise # Re-raise the AssertionError to mark the test as failed + # we don't raise an AssertionError here because NER isn't a perfect feature @pytest.mark.parametrize("conversation_num, conversation_rows", test_conv_df.groupby('conversation_num')) @@ -165,14 +167,9 @@ def test_conv_unit_equality(conversation_num, conversation_rows): file.write(f"Expected value: {expected_out}\n") file.write(f"Actual value: {actual_out}\n") + raise AssertionError # Re-raise the AssertionError to mark the test as failed -# testing complex features -test_chat_complex_df = pd.read_csv( - "./output/chat/test_chat_level_chat_complex.csv") - -# Helper function to generate batches of three rows - - +# Helper function for batches of 3 rows (INV/DIR) def get_batches(dataframe, batch_size=3): batches = [] rows = list(dataframe.iterrows()) @@ -180,7 +177,6 @@ def get_batches(dataframe, batch_size=3): batches.append(rows[i:i + batch_size]) return batches - def get_conversation_batches(dataframe, batch_size=3): # group by conversation_num and get the last row from the group last_rows = dataframe.groupby('conversation_num').tail(1) @@ -193,11 +189,7 @@ def get_conversation_batches(dataframe, batch_size=3): return batches -# Assuming test_chat_complex_df is your DataFrame -batches = get_batches(test_chat_complex_df, batch_size=3) - - -@pytest.mark.parametrize("batch", batches) +@pytest.mark.parametrize("batch", get_batches(test_chat_complex_df, batch_size=3)) def test_chat_complex(batch): feature = batch[0][1]['feature'] if feature not in tested_features: @@ -236,14 +228,13 @@ def test_chat_complex(batch): file.write(f"Dir message: {batch[2][1]['message']}\n") file.write(f"Ratio (DIR / INV): {ratio}\n") - raise # Re-raise the AssertionError to mark the test as failed + raise AssertionError # Re-raise the AssertionError to mark the test as failed -batches = get_batches(test_conv_complex_df, batch_size=3) + get_conversation_batches( +conversation_complex_batches = get_batches(test_conv_complex_df, batch_size=3) + get_conversation_batches( test_forward_flow_df, batch_size=3) + get_batches(test_conv_complex_df_ts, batch_size=3) - -@pytest.mark.parametrize("batch", batches) +@pytest.mark.parametrize("batch", conversation_complex_batches) def test_conv_complex(batch): feature = batch[0][1]['feature'] if feature not in tested_features: @@ -290,13 +281,9 @@ def test_conv_complex(batch): f"Dir conversation: {batch[2][1]['conversation_num']}\n") file.write(f"Ratio (DIR / INV): {ratio}\n") - # raise # Re-raise the AssertionError to mark the test as failed - - -batches = get_conversation_batches(test_forward_flow_df, batch_size=3) - + # we don't raise an AssertionError here because it's not a perfect feature -@pytest.mark.parametrize("batch", batches) +@pytest.mark.parametrize("batch", get_conversation_batches(test_forward_flow_df, batch_size=3)) def test_forward_flow_unit(batch): if (batch[0][1]['test_type'] != 'unit_eq'): return